Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.