Forum Discussion
Elcin_7
2 years agoHelper I
Max and Min Price for Conditional Formating
Hi all, I have 2 tables Calendar and Raw_Data. I need min and max price for each month in my table with conditional format. With the dax formula below. I am getting the result for whole table....
- Anonymous2 years ago
Hi Elcin_7 ,
You can try formula like below and use it in conditional formatting:
MEASURE = VAR max_ = MAXX ( FILTER ( ALL ( Raw_Data ), Raw_Data[Part_Number] = MAX ( Raw_Data[Part_Number] ) && Raw_Data[Month Name Short] = MAX ( Raw_Data[Month Name Short] ) ), [Price2] ) VAR min_ = MINX ( FILTER ( ALL ( Raw_Data ), Raw_Data[Part_Number] = MAX ( Raw_Data[Part_Number] ) && Raw_Data[Month Name Short] = MAX ( Raw_Data[Month Name Short] ) ), [Price2] ) RETURN IF ( MAX ( Raw_Data[Price2] ) = max_, "red", IF ( MAX ( Raw_Data[Price2] ) = min_, "green" ) )Best Regards,
Adamk KongIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi Elcin_7 ,
You can try formula like below and use it in conditional formatting:
MEASURE =
VAR max_ =
MAXX (
FILTER (
ALL ( Raw_Data ),
Raw_Data[Part_Number] = MAX ( Raw_Data[Part_Number] )
&& Raw_Data[Month Name Short] = MAX ( Raw_Data[Month Name Short] )
),
[Price2]
)
VAR min_ =
MINX (
FILTER (
ALL ( Raw_Data ),
Raw_Data[Part_Number] = MAX ( Raw_Data[Part_Number] )
&& Raw_Data[Month Name Short] = MAX ( Raw_Data[Month Name Short] )
),
[Price2]
)
RETURN
IF (
MAX ( Raw_Data[Price2] ) = max_,
"red",
IF ( MAX ( Raw_Data[Price2] ) = min_, "green" )
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.