Nightlytic
Member
Hi,
I often form my formulas with the logic of arriving at a number/value, then when I get something I didn't want, for example an empty value, or a 0, I want it to say "" instead, or maybe a specific text. For example:
=IF(SUMIFS(A:A,B:B,C1)<50,"Irrelevant",SUMIFS(A:A,B:B,C1))
Above sums up range A:A if range B:B matches cell C1, of the sum is less than 50, dismiss as irrelevant, type Irrelevant in the output. If not, move to false argument and return the actual number it found.
My problem as follows: This means that, if a number is returned, it does each calculation twice.
=IF(SUMIFS(A:A,B:B,C1)<50,"Irrelevant",SUMIFS(A:A,B:B,C1))
1 and 2, and sometimes these can be very long strings, this is terrible for efficiency, and difficult for my colleagues to follow.
Is there a way to cut down on the calculation time, or make it 'cleaner'?
Regards
I often form my formulas with the logic of arriving at a number/value, then when I get something I didn't want, for example an empty value, or a 0, I want it to say "" instead, or maybe a specific text. For example:
=IF(SUMIFS(A:A,B:B,C1)<50,"Irrelevant",SUMIFS(A:A,B:B,C1))
Above sums up range A:A if range B:B matches cell C1, of the sum is less than 50, dismiss as irrelevant, type Irrelevant in the output. If not, move to false argument and return the actual number it found.
My problem as follows: This means that, if a number is returned, it does each calculation twice.
=IF(SUMIFS(A:A,B:B,C1)<50,"Irrelevant",SUMIFS(A:A,B:B,C1))
1 and 2, and sometimes these can be very long strings, this is terrible for efficiency, and difficult for my colleagues to follow.
Is there a way to cut down on the calculation time, or make it 'cleaner'?
Regards