Forum Discussion
Anonymous
3 years agoNot applicable
Adding two columns from different sheet (using a filter)
I am trying to add two columns / sheet from a different sheet for the dashboard, but running into a 'Blank' statement if the corresponding row doesnt exist in one of the columns / sheet. E.g. Sh...
- 3 years ago
Try
My Sum = SUM('Sheet1'[Amount]) + SUM('Sheet2'[payment])
johnt75
3 years agoSuper User
Try
My Sum = SUM('Sheet1'[Amount]) + SUM('Sheet2'[payment])Anonymous
3 years agoNot applicable
works just fine. thank you .. It was so simple, I was over complicating it ...