The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
78 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
104 | |
93 | |
52 | |
50 | |
46 |