I have SumProduct
working but it does not seem to be capturing all the values.
Here is a sample data:
I would like to match WiFi Services*
, Day
and then sum up the values in Column I.
This is my formula that does not seem to be capturing call the correct minutes.
=SUMPRODUCT((LEFT(Table164[Call Description],13)="WiFi Services")*(Table164[Time Rate]=AA20)*(Table164[Mins]))
Cell AA20
is referring to the Time Rate: Day
Does anyone have an idea why the above formula is not capturing everything or they have a better approach to this?
Thanks
Did you implement the wild card in the formula? ("WiFi Services*"
)
=SUMIFS(I:I,G:G,"WiFi Services*", H:H, "Day")