Re: HTML Table Conditional Format
Hi @Anonymous5,
If you want to change three colors, you could use another if expression to instead of the third parameter of first if expression.
if(and(greaterOrEquals(variables('Number'),0),lessOrEquals(variables('Number'),20)),variables('varStyle').rowStyleLowValues,if(and(greater(variables('Number'),20),lessOrEquals(variables('Number'),40)),variables('varStyle').rowStyleMiddleValues,variables('varStyle').rowStyleHighValues))
If the Number is not greater than or equals to 0 and not less than or equals to 20, perform the second if expression.
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.