The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi there ;
i have a column which shows "day" value as below left , i would like to create a new column that writing status according to below rule
İf day column value is between -3 and +3 status = on time
if day column is bigger than +3 status is = late
if day column is smaller than -3 status is early
thanks in advance
day | Status |
0 | On time |
3 | On time |
5 | Late |
2 | On time |
1 | On time |
-6 | Early |
-4 | Early |
-3 | On time |
-1 | On time |
Solved! Go to Solution.
Hi @erhan_79
Status Column =
SWITCH(TRUE(),
[day] < -3, "early",
[day] > 3, "late",
"on time"
)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
80 | |
77 | |
43 | |
39 |
User | Count |
---|---|
150 | |
117 | |
67 | |
64 | |
56 |