Forum Discussion
Minimum value subtotal based on specific dates
- 5 years ago
Hi, sunah132
Thank you for sharing.
Please try the below.
Min Value measure =
SWITCH (
TRUE (),
ISINSCOPE ( 'Table'[item] ), SUMX ( VALUES ( 'Table'[Date] ), MIN ( 'Table'[Value] ) ),
SUM ( 'Table'[Value] )
)Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
Hi, sunah132
Please try something like below.
Min Value measure =
SUMX ( VALUES ( 'Table'[Date] ), MIN ( 'Table'[Value] ) )
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
- sunah1325 years agoHelper I
Thank you so much!
That measure applied on my report successfully.
If I would like to calculate row subtotal, would it be using same as this Min Value measure =
SUMX ( VALUES ( 'Table'[Date] ), MIN ( 'Table'[Value] of drill up value ) ) ?- Jihwan_Kim5 years agoSuper User
Hi, sunah132
Thank you for your feedback.
Sorry that I quite do not understand your last question.
Please describe how you like to see the row subtotal.
- sunah1325 years agoHelper I
Sorry, I meant to explain this below. I applied your suggestion that had total value on the column but rows still appear to have a minimum value.