Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 )
Solved! Go to Solution.
@Anonymous So...
RAG =
SWITCH (
TRUE(),
[Date] < TODAY(), "Red",
[Date] <= EOMONTH ( TODAY(), 0 ), "Amber",
"Green"
)
@Anonymous So...
RAG =
SWITCH (
TRUE(),
[Date] < TODAY(), "Red",
[Date] <= EOMONTH ( TODAY(), 0 ), "Amber",
"Green"
)
User | Count |
---|---|
84 | |
79 | |
69 | |
46 | |
43 |
User | Count |
---|---|
106 | |
50 | |
49 | |
40 | |
39 |