This could have to be done with this code in Custom JS:
setInterval(function(){
if(Number(jQuery(".vLookup_total_vLookupTasks:eq(8)").text()) > 24){
jQuery(".vLookup_total_vLookupTasks:eq(8)").addClass("vLookup-over24");
}else{
jQuery(".vLookup_total_vLookupTasks:eq(8)").removeClass("vLookup-over24");
}
});
and this in Custom CSS:
.vLookup-over24{
background-color:red;
color:white;
}
Change “vLookupTasks” with the name of your field, and the number 8 with the index of the column from the left (the first one is index 0).
Alexander