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.
- 2 years ago
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!!!
Rohit11
2 years agoResolver 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!!!