Forum Discussion
Anonymous
4 years agoNot applicable
Switch True Calculated Column formula
Hi Experts
The below calculated column measure is in one column in the second column i would like to show 1 as Red in text and 2 as Amber and 3 as Green as text in a new Column called RAG
Date Period =
SWITCH (
TRUE(),
[Date] < TODAY(), 1,
[Date] <= EOMONTH ( TODAY(), 0 ), 2,
3
)
Anonymous So...
RAG = SWITCH ( TRUE(), [Date] < TODAY(), "Red", [Date] <= EOMONTH ( TODAY(), 0 ), "Amber", "Green" )
1 Reply
- Greg_DecklerCommunity Champion
Anonymous So...
RAG = SWITCH ( TRUE(), [Date] < TODAY(), "Red", [Date] <= EOMONTH ( TODAY(), 0 ), "Amber", "Green" )