I want to apply CSS to cells depending on the value. for example here i want to show cells in green color when the SIT_MAN field is null but I m not able to do so . Procedure is as follows :
DROP PROCEDURE IF EXISTS sp_DBR_ProjectManDays
$$
CREATE PROCEDURE sp_DBR_ProjectManDays
()
Begin
Select 'dbr.title','Project ManDays';
select 'dbr.cellstyle', 'value', 'style';
select
SIT_Actual_MAN as '[value]',
if SIT_Actual_MAN is null ,'color:red','color:green') as '[style]',APP_NUMBER as ID`
from wf_project_tracker.project_tracker_master;
end
$$
Do help please.