Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello colleagues!
Once again i comme to request your kindly support regrading the following:
I have already a measure (LQAS) which contain my percentage (in the first column) so, i would like a measure who will display only percentage of lates date highlight in yellow in the print screen below:
Note: I don’t like to calculate percentage but just display.
Thank you your help.
Fd.
Solved! Go to Solution.
Hi @dofrancis3 ,
Thank you @Gabry for your prompt reply. I have created a data example for you to solve the problem. You can follow the steps below:
1. Add a measure.
Colour =
VAR _maxdate =
RANKX (
FILTER (
ALL ( 'Table' ),
'Table'[Country] = SELECTEDVALUE ( 'Table'[Country] )
),
CALCULATE ( MAX ( 'Table'[Start date] ) ),
,
DESC
)
RETURN
IF ( _maxdate = 1, "yellow" )
2. Put the measure into the fx in Visual.
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @dofrancis3 ,
Thank you @Gabry for your prompt reply. I have created a data example for you to solve the problem. You can follow the steps below:
1. Add a measure.
Colour =
VAR _maxdate =
RANKX (
FILTER (
ALL ( 'Table' ),
'Table'[Country] = SELECTEDVALUE ( 'Table'[Country] )
),
CALCULATE ( MAX ( 'Table'[Start date] ) ),
,
DESC
)
RETURN
IF ( _maxdate = 1, "yellow" )
2. Put the measure into the fx in Visual.
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello,
this should be the formula:
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |