Conditional formatting allows you to highlight your data series based on a pattern or a trend in your data. This makes it easy for you to identify when your data reaches certain values or when it deviates from the trend.
Zoho Analytics allows you to format chart data points with specific color based on a condition. In this week's tip, we'll see how to apply conditional formatting over your chart.
Let's see how to format the Profit across months by the profit range.
Now we have applied formatting based on a simple condition. Zoho Analytics allows you to format the chart based on advanced conditions using the Formulas .
Let's see how to format the same chart by the Profit Percentage based on your sales.
|
sum( "Sales"."Profit" )/sum( "Sales"."Sales" ) |
|
if( "Sales"."Profit Percentage" < 0.5,1 , if( "Sales"."Profit Percentage" < 0.6,2, if( "Sales"."Profit Percentage" < 0.7,3,4 ))) |
We believe this will be useful for you. Stay tuned for more nifty tips.