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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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"

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

Top Solution Authors