Forum Discussion
anna3155
Apr 21, 2022Copper Contributor
Sum of multiple rows using VLOOKUP
We are trying to use VLOOKUP in order to retrieve the multiple values. We have a value that we are looking for and we want to have the sum from all the cells that this value is related to. For exampl...
- Apr 21, 2022
You can use something like
=SUMIFS(range_with_numbers, range_with_colors, "Green", other_range, "<>Apple")
if you only want to sum numbers where the color is green and another column does not contain Apple.
HansVogelaar
Apr 21, 2022MVP
You can use something like
=SUMIFS(range_with_numbers, range_with_colors, "Green", other_range, "<>Apple")
if you only want to sum numbers where the color is green and another column does not contain Apple.
anna3155
Apr 21, 2022Copper Contributor
Okay thank you.
This worked for what I needed.
This worked for what I needed.