Sign in to join the conversation:
Hi all,
I am trying to add a range of cells on condition that it does not contain any value that is equal to/or less than 0. for instance (12,45,24,0,65) should equal 0 and (12,24,24,10,65) give me 135.
anyone to help?
Musa,
I think I've got a solution for you that you'll want to experiment with. In this example the Sum of the numbers is in Column 1 and the other 5 numbers are in columns 2 through 6 respectively.
=IF(AND([Column2]1 > 0, [Column3]1 > 0, [Column4]1 > 0, [Column5]1 > 0, [Column6]1 > 0), SUM([Column2]1:[Column6]1), 0)
Hi community i'm trying to create a formula that calculate a sum in a column based on may criteria. here is a screenshot of the affected column i want to calculate the "volume cumul" (sum of volume collected) based on Week Active should be "This Week" or "Next Week" same Unique ID should be calculated together if Unique ID…
Hi I am trying to work out a percentage for some KPIs. I have a sheet I am recording various KPI entries on (see below) I have a metrics sheet set up so, I can break the KPI results down by month by referencing this sheet. Taking KPI 1 (in the example shown above), I need a formula that will return a percentage of the…
Hi all, Is it possible to display some sort of graphic like this within a dashboard? I'd be taking data from a form and gathering total numbers of of "yes" and "non" questions to get the numerator and denominator for each row or column in the picture. I think I could do the metric sheet part of this task no problem, but…