Hi @Poojitha is this something you are trying for Hope it helps venky1544_0-1646843335568.png <dashboard> <label>Table with color Based on Status</label> <row> <panel> <title>check</title> <html depends="$alwaysHideHTMLCSSPanel$"> <style> #tableColorFinalRowBasedOnData table tbody td div.multivalue-subcell[data-mv-index="2"]{ display: none; } </style> </html> <table id="tableColorFinalRowBasedOnData"> <search> <query>| makeresults | eval source="test_hec,test_s3" ,events= "123,90"| makemv source delim=","| makemv events delim="," |append [|makeresults | eval source="test_hec,test_s3" ,events= "80,900"| makemv source delim=","| makemv events delim=","] | multikv forceheader=1 | eval new=mvindex(events,0) |eval new2= mvindex(events,1) |eval status=if(new <new2,"BIG","SMALL") |foreach source,events [ eval <<FIELD>>=mvappend('<<FIELD>>',status)] | fields - new,new2,status</query> <earliest>-24h@h</earliest> <latest>now</latest> <sampleRatio>1</sampleRatio> </search> <option name="refresh.display">progressbar</option> <format type="color" field="events"> <colorPalette type="expression">case (match(value,"BIG"), "#DC4E41")</colorPalette> </format> <format type="color" field="source"> <colorPalette type="expression">case (match(value,"BIG"), "#DC4E41")</colorPalette> </format> </table> </panel> </row> </dashboard>
... View more