Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
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"
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 52 | |
| 42 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 111 | |
| 104 | |
| 35 | |
| 27 | |
| 27 |