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

Get Fabric certified for FREE! Don't miss your chance! Learn more

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.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.