Hosted by Dailymotion. For legal issues report at the Copyright Center, report us on DMC, or use the Instant Removal tool.
Sum Values By Criteria in Excel - Excel Tips and Tricks
3 Views • Feb 19, 2026
Description
Unlocking a nuanced dimension of conditional summation in Excel, the formula "=SUM((D6:D38)*(E6:E38="PAID"))" leverages the prowess of array formulas. This elegant approach involves a meticulous interplay of logical operations and arrays to selectively sum values. The expression "(E6:E38="PAID")" generates a binary array, distinguishing cells containing "PAID" with TRUE and others with FALSE. Multiplying this logical array by the corresponding values in D6:D38 acts as a filter, zeroing out the irrelevant entries. The summation that follows is focused solely on the values meeting the specified criterion. This method, free from the confines of SUMIF, not only streamlines the process but also showcases Excel's adaptability in handling diverse criteria, offering a powerful solution for dynamic data analysis.
Let's break down this formula.
=SUM((D6:D38)*(E6:E38="PAID"))
D6:D38: This represents a range of cells from D6 to D38.
E6:E38="PAID": This is a logical test applied to the range E6:E38. It checks if each cell in the range is equal to the text "PAID". This results in an array of TRUE and FALSE values.
(D6:D38)*(E6:E38="PAID"): This is an array operation where the elements of the D column are multiplied by the corresponding elements of the logical array generated in step 2. This operation effectively "filters" the values in column D based on whether the corresponding cell in column E is equal to "PAID".
SUM((D6:D38)*(E6:E38="PAID")): Finally, the SUM function adds up all the values in the array obtained from step 3. It adds only the values where the corresponding cell in column E is equal to "PAID". In other words, it sums the values in column D only if the corresponding cell in column E is "PAID".
In summary, this formula calculates the sum of values in column D where the corresponding entry in column E is "PAID". It's a common technique in spreadsheet formulas to use logical conditions to filter and perform calculations based on certain criteria.
How do you sum based on criteria in Excel?,How do you sum if criteria between two values?,How do I sum selected values in Excel?,How do you sum if with text criteria?,
Check out my complete suite of Microsoft Excel Tips and Tricks.
https://www.youtube.com/@jjnet247/shorts
https://www.tiktok.com/@exceltips247
https://www.instagram.com/exceltips247/
https://www.dailymotion.com/ExcelTips247
https://www.pinterest.com/ExcelTips247/excel-tips-and-tricks/
https://x.com/ExcelTips247/media
https://www.reddit.com/r/Excel247/
https://www.facebook.com/XyberneticsInc/reels/
#microsoft #excel #tips #tipsandtricks #microsoftexcel #accounting #fyp #fypシ #exceltips #exceltricks
More from User
How do you create a choose function in Excel? - Excel Tips and Tricks
ExcelTips247
Finding values that only appear once in column in Excel - Excel Tips and Tricks
ExcelTips247
Custom Sort Rows in Excel - Excel Tips and Tricks
ExcelTips247
How to Make Excel Formulas Calculate Automatically - Excel Tips and Tricks
ExcelTips247
Highlight duplicate cell in another sheet in Excel - Excel Tips and Tricks
ExcelTips247
How do you align charts to cells in Excel? - Excel Tips and Tricks
ExcelTips247
Related Videos
Sum comma separated values in jaggered format in Excel - Excel Tips and Tricks
ExcelTips247
Sum comma separated values in Excel - Excel Tips and Tricks
ExcelTips247
Excel Tips and Tricks - How To SUM Values In Excel - Excel Formula
eVideoTuition
Sum comma separated values in Excel Without Using TEXTSPLIT() Function - Excel Tips and Tricks
ExcelTips247
Can you use VLOOKUP to sum values? - Excel Tips and Tricks
ExcelTips247
How to compare two lists to find missing values in excel - Excel Tips and Tricks
ExcelTips247