Forum Discussion
Jan845
4 years agoHelper I
Power 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
4 years agoSuper User
This 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