Forum Discussion
Elie_HUCHET
4 years agoHelper III
Conditional formatting by field
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.
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.
3 Replies
- v-yalanwu-msftCommunity Support
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. - Elie_HUCHETHelper III
Thank you!
- Elie_HUCHETHelper III
It's AWESOME THANK YOUUUUUUU