Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
chavanr
Resolver I
Resolver I

Format error when creating measure

Hi there,

 

I have created a measure which is giving following error

chavanr_0-1631579690975.png

All the fields are in date/time format.

 

Just wondering still giving the above error.

 

Cheers

3 ACCEPTED SOLUTIONS

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.

View solution in original post

@chavanr 

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] )

 

View solution in original post

i have done the transformation in m query using If with conditional column

View solution in original post

4 REPLIES 4
jdbuchanan71
Super User
Super User

The problem is with the " " portion.

 

string.jpg

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

@chavanr 

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] )

 

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.