I have multiple sheets that I am working from where I need to sumifs a column only if another column in the same row is not blank.
This is what I want to do:
If {Column C} is Blank or more than 0, Sumifs {Column B}, if {Column A} is checked
This is what I've tried:
=IF(SUMIFS({Column C}) < 0, "", SUMIFS({Column B}, {Column A}, 1))
Please help