Forum Discussion
Anonymous
2 years agoNot applicable
How to skip empty when calculate difference?
Hello,
I need a new column to calculate the difference bewteen Column A & B, but B has some empty cells which should be ingored. Please advise.
Try
Difference = IF( ISBLANK([ColumnB]), BLANK(), [ColumnA] - [ColumnB] )Thank you.
Don't forget to give thumbs up and accept this as a solution if it helped you!!!
1 Reply
- Rohit11Resolver II
Try
Difference = IF( ISBLANK([ColumnB]), BLANK(), [ColumnA] - [ColumnB] )Thank you.
Don't forget to give thumbs up and accept this as a solution if it helped you!!!