Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
QFanatic
Creator
Creator

Value in Chart - conditional

hi guys

PFA

On the chart - if a Weekday falls on a Sunday, I dont want to display 'N/A' - I want to display the word 'Sunday' - is that possible? Since I dont have WEEKDAY as a dimension in the chart - what would the expression look like?

If not - I can highlight the cell in red for instance.

 

Thank you

Labels (1)
1 Solution

Accepted Solutions
rubenmarin

Hi, in example for 1st column you can add:

=If(Only({<PERIODID = {$(=Max(PERIODID)-1)}>} WEEKDAY)='Sun', 'Sunday', [Expression_as_it_is_now])

View solution in original post

2 Replies
rubenmarin

Hi, in example for 1st column you can add:

=If(Only({<PERIODID = {$(=Max(PERIODID)-1)}>} WEEKDAY)='Sun', 'Sunday', [Expression_as_it_is_now])

QFanatic
Creator
Creator
Author

Thank you