Hi,
I have a requirement to color code a column based on value.
Eg, input :
| ID | sal |
| 1 | 10000 |
| 2 | 15000 |
| 3 | 9500 |
| 4 | 12500 |
| 5 | 7500 |
I want my output to be like : ( red color when sal is less than 10000)
| ID | sal |
| 1 | 10000 |
| 2 | 15000 |
| 3 | 9500 |
| 4 | 12500 |
| 5 | 7500 |
I am using 2019.4 version and I am not able to find column rules. When i use row rules entire row is changed to red.
How can this be achieved.