The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
Below calculated column returns "Early" if column [Visits_ActStart] is less than column [Visits_StartTime].
However, it also returns "Early" if [Visits_ActStart] is blank.
How can I modify this so it won't return "Early" if [Visits_ActStart] is blank.
Solved! Go to Solution.
You can use an extra condition for [Visits_ActStart] <> blank(), however, there is a better way to write down the column using SWITCH:
Punctuality = SWITCH(TRUE,
You can use an extra condition for [Visits_ActStart] <> blank(), however, there is a better way to write down the column using SWITCH:
Punctuality = SWITCH(TRUE,
That does exactly what I need. Thank you. I will look to use SWITCH in future.
User | Count |
---|---|
87 | |
84 | |
36 | |
35 | |
32 |
User | Count |
---|---|
96 | |
75 | |
67 | |
52 | |
52 |