cancel
Showing results for 
Search instead for 
Did you mean: 

Strikeout text in a report based on field value

Former Member
0 Kudos

I'm trying to find a way of striking through the text in a row in a report depending on a field value (i.e if value = 'CANCELLED' then strikethrough). The Highlighting Expert doesn't seem to allow strikethrough. Can anyone suggest another way of doing this ?

Accepted Solutions (1)

Accepted Solutions (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi Peter,

Right-click the field > Select Format Field > Font tab > Click on the Formula button beside 'Strikeout' and use this code:

currentfieldvalue = "CANCELLED"

Hope this helps.

-Abhilash

Former Member
0 Kudos

Hi Abhilash

Thanks for the prompt response. Do you know how can I get this to work if the column I want to strikethrough is not the one that contains the status value. The column I want to strikethrough is called 'Title' and the column I'm checking is called 'Status'. If 'Status' = CANCELLED then I want to strikethrough the title.

abhilash_kumar
Active Contributor
0 Kudos

Yes, modify that formula to:

{Status} = "CANCELLED" //Replace Status with the database field

-Abhilash

Former Member
0 Kudos

Thanks Abhilash

Just what I needed

Answers (0)