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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Hadill
Helper I
Helper I

How to write conditioned DAX

Hi there,

 

I am trying to type a DAX formula that satisfies the following condition:

 

if the 'sales'[sales-number] contains Number, then print 'Sold Out'

and if it is empty, then print 'Ready for Sale'

 

advince thanks for helping.

1 ACCEPTED SOLUTION
ValtteriN
Super User
Super User

Hi,


Like Amit said you can use PQ or if you want a dax solution:

You can achieve this by either checking for blank

IF(SELECTEDVALUE('ALL'[Value])=BLANK(),"Ready for Sale","Sold Out")


Or checking for number: 

IFERROR(
IF(
ISNUMBER(VALUE(max('ALL'[Value]))),"Sold Out"),"Ready for Sale")


Example:
ValtteriN_0-1646031201507.png

 


 



I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
ValtteriN
Super User
Super User

Hi,


Like Amit said you can use PQ or if you want a dax solution:

You can achieve this by either checking for blank

IF(SELECTEDVALUE('ALL'[Value])=BLANK(),"Ready for Sale","Sold Out")


Or checking for number: 

IFERROR(
IF(
ISNUMBER(VALUE(max('ALL'[Value]))),"Sold Out"),"Ready for Sale")


Example:
ValtteriN_0-1646031201507.png

 


 



I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




amitchandak
Super User
Super User

@Hadill , create a new column in power query

 


if [Column] =null then "Ready for Sale"
else if Value.Is([Column], Int64.Type) then "Sold Out" else "Other"

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.