Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi there,
I have created a measure which is giving following error
All the fields are in date/time format.
Just wondering still giving the above error.
Cheers
Solved! Go to Solution.
Yes, i understand that but how do we handle because i want to use it as a condition where there is blank it should consider value from another column.
Try it like this.
Time out testing =
IF (
'Weighing Details New'[Time Out] = BLANK (),
'Weighing Details New'[New Weighing data.Timeout],
'Weighing Details New'[Time Out]
)
or this
Time out testing =
IF (
ISBLANK ( 'Weighing Details New'[Time Out] ),
'Weighing Details New'[New Weighing data.Timeout],
'Weighing Details New'[Time Out]
)
or this
Time out testing = COALESCE ( 'Weighing Details New'[Time Out], 'Weighing Details New'[New Weighing data.Timeout] )
i have done the transformation in m query using If with conditional column
The problem is with the " " portion.
Yes, i understand that but how do we handle because i want to use it as a condition where there is blank it should consider value from another column.
i have done the transformation in m query using If with conditional column
Try it like this.
Time out testing =
IF (
'Weighing Details New'[Time Out] = BLANK (),
'Weighing Details New'[New Weighing data.Timeout],
'Weighing Details New'[Time Out]
)
or this
Time out testing =
IF (
ISBLANK ( 'Weighing Details New'[Time Out] ),
'Weighing Details New'[New Weighing data.Timeout],
'Weighing Details New'[Time Out]
)
or this
Time out testing = COALESCE ( 'Weighing Details New'[Time Out], 'Weighing Details New'[New Weighing data.Timeout] )
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 26 | |
| 23 | |
| 23 | |
| 14 |
| User | Count |
|---|---|
| 46 | |
| 33 | |
| 20 | |
| 18 | |
| 16 |