Forum Discussion
Elie_HUCHET
Helper III
4 years agoConditional 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-msft
Community 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_HUCHET
Helper III
Thank you!
- Elie_HUCHET
Helper III
It's AWESOME THANK YOUUUUUUU