Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have to achive below expression for one of the report. Please refer to the attached QVW.
Thanks.
I put this together in the #1,2,3 order of precedence that you outlined. Let me know if all conditions are met accurately
Status expression:
=IF(Id=1,Date(Date1),
if( count ( distinct Types)>=1, if (Status='Status1', 'YES', Date1),'NO'
)
)
Status Background Color formula:
if( Id=1 , LightGreen(),
if( count ( distinct Types)>=1,
if (Status='Status1', yellow(),
if( Date1<Today(), yellow(),LightGreen())
)
)
)
Hi Jonathan,
Thanks a lot for help . I am still checking. I will implement to my actual requirement and let you know.
Thanks again.