Forum Discussion
Jan845
Helper I
4 years agoPower Bi How to Calculate Values based on condition
Hi Power BI Community Support, I am new to the power bi looking for support for the below problem statement. This is a semple of my table: Calls Time Delivered 30 Abandoned 1...
- 4 years ago
This is generally done with filters like this:
CALCULATE ( SUM ( 'Table1'[Time] ), 'Table1'[Calls] = "Abandoned" )
AlexisOlson
Super User
4 years agoThis is generally done with filters like this:
CALCULATE ( SUM ( 'Table1'[Time] ), 'Table1'[Calls] = "Abandoned" )Juliano845
4 years agoFrequent Visitor
It works, thank you so much