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,
I have column Time (bins) below
And I'm create column to flagging when value of Time not blank then 0 else 1
The dax like this :
Anyone know how the dax should work ?
Please help
Thanks
Solved! Go to Solution.
Please try this, 00:00:00 is being considered as blank, so you need to use 'strictly equal to' (==) instead
Index = IF( NOT ( [Time (bins)] == BLANK() ), 0,1)
Please try this, 00:00:00 is being considered as blank, so you need to use 'strictly equal to' (==) instead
Index = IF( NOT ( [Time (bins)] == BLANK() ), 0,1)
This is work !!
Thank you
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.