Forum Discussion
littlevillage
Dec 22, 2022Iron Contributor
SUMIFS not working with blanks.
Hi, I try to write a formula: =SUMIFS(Table1[unit],Table1[ID],G17,Table1[%percen],"<99%") Hope for your response, Thank you.
- Dec 23, 2022
If you run 2021 or 365, in H17:
=SUM((Table1[ID]=G17)*(Table1[%percen]<99%))
With other versions, to avoid validating the above as an array formula (Ctrl+Shift+Enter on Windows), in I17:
=SUMPRODUCT(--(Table1[ID]=G17), --(Table1[%percen]<99%))
littlevillage
Dec 22, 2022Iron Contributor
ecovonrein
Dec 23, 2022Iron Contributor
I have not tried myself but if you write "...,Table1[%percen]*1,..." all may be well.
- HansVogelaarDec 23, 2022MVP
You cannot do that - functions such as SUMIFS expect a range, not an expression,