Text mode Column rules on a report | Community
Skip to main content
Srinija_N
Level 7
February 14, 2025
Question

Text mode Column rules on a report

  • February 14, 2025
  • 1 reply
  • 508 views

Is there a way to apply two conditions on a single column rules at the same time on the Report view?

for example, I want to display 'text' on a report column when status is 'xyz' and XDate is blank.

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

Rafal_Bainie
Community Advisor
Community Advisor
February 14, 2025

I think this is possible, and likely in 2 different ways:

1. by using valueexpression directly on the report

2. by creating custom field that would combine both fields into single one and leverage that new field in a report

Srinija_N
Srinija_NAuthor
Level 7
February 15, 2025

can you help/guide me how to write valueexpression on the column custom rule?

Rafal_Bainie
Community Advisor
Community Advisor
February 18, 2025

hi,

sorry, I might need to take back 1. I'm not so sure anymore and lack time to playaround

for 2. here is an example of custom field i created and subsequently used for conditional formatting in the report:

IF(({status}="NEW")=true && {DE:NLT}>$$NOW,"blank",IF((({status}="INP" || {status}="BES")=true &&{DE:NLT}<$$NOW),"Green","red"))

hope this helps