Expand my Community achievements bar.

The Community Ideas review for H1 2025 is out now, see which ideas our Product team prioritized and let us know your thoughts.

Text mode Column rules on a report

Avatar

Level 7

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.

 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

3 Replies

Avatar

Community Advisor

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

Avatar

Level 7

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

Avatar

Community Advisor

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