Forum Discussion
RMillarBA
Mar 14, 2023Copper Contributor
Sum Value of Multiple Ranges
Is there a formula/combo of formulas to use the depth ranges (blue) to sum the fractures (green) based on the depths (yellow)? Thanks!
Harun24HR
Mar 15, 2023Bronze Contributor
Your question is not clear. Explain little more. What would be your desired output?
- RMillarBAMar 15, 2023Copper ContributorRun No. 45 for example, I would like to take the range 135.5-140, search/match the yellow range 135.5-140.5 and sum the freqfeet associated with it. Something similar to sum(xlookup()) but with a range.
Thanks.- OliverScheurichMar 15, 2023Gold Contributor
=SUMPRODUCT(INDIRECT("C"&MATCH(1,($A$2:$A$12<=E2)*($B$2:$B$12>=E2),0)+1):INDIRECT("C"&MATCH(1,($A$2:$A$12<=F2)*($B$2:$B$12>=F2),0)+1))
Does this formula return the expected results in the simplified example? The formula has to be entered with ctrl+shift+enter if one doesn't work with Office 365 or Excel 2021.