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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
bouyazbekj
Helper I
Helper I

Help with IF function

Hello,

 
I am having a hard time getting this IF function to work.
 
Column  = IF(OITW[AvgPrice]="",OITW[StockValue]/OITW[OnHand],OITW[AvgPrice])

 

Essentially, what I need this column to do is if there a value in the AvgPrice column, use that value otherwise take the StockValue column and divide by the OnHand column.

 

All columns are in number format. and here is the error that I'm getting.

 

 DAX comparison operations do not support comparing values of type Number with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values.

 

What am I doing wrong or is there a way a create this column in Power Query Editor? 

 
1 ACCEPTED SOLUTION
Aron_Moore
Solution Specialist
Solution Specialist

It's because in OITW[AvgPrice]="", [AvgPrice] is a number and "" is text.

 

Try OITW[AvgPrice]=BLANK().

View solution in original post

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @bouyazbekj ,

By my tests, the suggestion of Aron_Moore is helpful.

If you have solved your problem, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

If you still need help, please share your data sample which could reporduce your scenario and your desired output so that we could help further on it.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Aron_Moore
Solution Specialist
Solution Specialist

It's because in OITW[AvgPrice]="", [AvgPrice] is a number and "" is text.

 

Try OITW[AvgPrice]=BLANK().

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.

Top Solution Authors