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,
I would like to create conditional formatting per field. Indeed, if my number of bins (Nombre de bacs) is lower than my minimum stock (Stock mini) then the field stock of bins (Nombre de bacs) turns red.
Solved! Go to Solution.
Hi, @Elie_HUCHET ;
You could create a condition measure.
condition = IF(MAX('Table'[Nombre de bacs])<MAX('Table'[Stock mini]),1,0)
Then
The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It's AWESOME THANK YOUUUUUUU
Thank you!
Hi, @Elie_HUCHET ;
You could create a condition measure.
condition = IF(MAX('Table'[Nombre de bacs])<MAX('Table'[Stock mini]),1,0)
Then
The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.