Reputation: 27
If a cell in TT[Fiscal Law 301 CBT]
is blank i would like to add the numbers in TT[Helper1]
CountBlank
doesnt work because I need to sum of column TT[Helper]
. Other issues i've tried is counting the number of ""
but it always brings back zero.
Please help...
Upvotes: 0
Views: 135
Reputation: 9874
use the following formula
=IF(TT[Fiscal Law 301 CBT]="", TT[Helper1],TT[Fiscal Law 301 CBT])
you would need to generate another table filled with this formula that would check fiscal law for a blank value. when there is a blank it pulls from helper1, and when there is no blank it pulls the value from fiscal law. Normally I would be referencing individual cell address like D2, so there may be an issue with the table referencing method which I am not familiar with.
Upvotes: 2