Hi ,
I'm using a view in my report.
select id,accountid,
case when "ISP_Complete_Account_Plan__c"='true' then 'Complete_Account_Plan : COMPLETED'
else 'Complete_Account_Plan ' '
end as Complete_Account_Plan,
case when "ISP_Identify_Potential_Opportunities__c"='true'
then 'ISP_Identify_Potential_Opportunities : COMPLETED' else 'ISP_Identify_Potential_Opportunities ' '
end as ISP_Identify_Potential_Opportunities ...so on...
I need to Highlight the columns when it is "COMPLETED".
I know I can do with Fields.
I'm using a view in my report.
select id,accountid,
case when "ISP_Complete_Account_Plan__c"='true' then 'Complete_Account_Plan : COMPLETED'
else 'Complete_Account_Plan ' '
end as Complete_Account_Plan,
case when "ISP_Identify_Potential_Opportunities__c"='true'
then 'ISP_Identify_Potential_Opportunities : COMPLETED' else 'ISP_Identify_Potential_Opportunities ' '
end as ISP_Identify_Potential_Opportunities ...so on...
I need to Highlight the columns when it is "COMPLETED".
I know I can do with Fields.