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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
AllanBerces
Post Prodigy
Post Prodigy

IF and Multiply

Hi good morning can anyone help me correct my dax on my PQ custom column. what i required is IF the column %RO s blank then i want the value of column Hours but if not blank multiply column hours and %RO.

 

if[#"% RO"] = blank(),[hours] else [hours] *[#"% RO"]

 

Thank you

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Please indicate if you want Power Query or DAX. You cannot mix them.

 

Power Query:

 

if [#"% RO"] = null then [hours] else [hours] *[#"% RO"]

 

DAX:

IF( ISBLANK([% RO]),[hours],[hours] *[% RO])

 

Or simplified

[hours]*COALESCE([% RO],1)

 

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

Please indicate if you want Power Query or DAX. You cannot mix them.

 

Power Query:

 

if [#"% RO"] = null then [hours] else [hours] *[#"% RO"]

 

DAX:

IF( ISBLANK([% RO]),[hours],[hours] *[% RO])

 

Or simplified

[hours]*COALESCE([% RO],1)

 

Hi @lbendlin thank you very much for the reply

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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