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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors