Forum Discussion
rickylee
Helper III
7 years agoFilter in calculate( )
Hello, In my table, I have a "Total order billing (include refund)" which is the amount for a transaction. I also have a column "refund" which contains either True or False only. To find out th...
- 7 years ago
rickylee Please try this, if your "refund" field is Text Data type
Total refund amount = CALCULATE(SUM([Total billing]), Test[Refund]="True")
If "refund" field is Boolean data type then use
Total refund amount = CALCULATE([Total billing], Test[Refund]=True())
PattemManohar
Community Champion
7 years agorickylee Could you please post sample data for testing your scenario.