Forum Discussion
sunah132
5 years agoHelper I
Sum up minimum value and 0 value
Hello, I'm working on this power BI Matrix and not sure about this step forward. I have brought minimum values of each region's rate based on their dates. I used the formula of SWITCH ( TRUE (), ...
- 5 years ago
Hi sunah132
You could try this measure:
Measure_Value = IF ( ISINSCOPE ( 'Table'[Route] ) && ISINSCOPE ( 'Table'[Date] ), MIN ( 'Table'[Value] ), SUM ( 'Table'[Value] ) )Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
amitchandak
5 years agoSuper User
sunah132 , Try like this once
SUMX ( VALUES ( 'Table'[Date] ),calculate( MIN ( 'Table'[Value] ) ))