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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
learner03
Post Partisan
Post Partisan

If condition issue

How can write a DAX for below to get desired result in Result whole order fulfil column-

So, if for an order no., 'can fulfil' column is same for all items, then 1 otherwise 0 if even one item in that order is having 0 on can fulfil column. So, 1 will indicate that whole order can go together otherwise can't.

 

      
 order no.itemcan fulfilResult whole order fufil 
 A12311 
 A34511 
 B34510 
 B12300 
 C45600 
 C78910 
 C23400 
 D45611 
 E28700 
 E12300 
 F35600 
2 ACCEPTED SOLUTIONS
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood correctly your question, because I am confused about order number E and F.

However, please check the below picture and the attached pbix file. It shows the same result as yours.

Picture3.png

 

Result whole order fulfil CC = 
VAR currentorderno = Data[order no.]
VAR filtertable =
    FILTER ( Data, Data[order no.] = currentorderno && Data[can fulfil] <> 1 )
RETURN
    IF ( COUNTROWS ( filtertable ) > 0, 0, 1 )


Microsoft MVP



If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question





View solution in original post

Samarth_18
Community Champion
Community Champion

Hi @learner03 ,

 

You can also try this:-

Result whole order fufil = 
var result = COUNTROWS(FILTER('Table','Table'[order no.] = EARLIER('Table'[order no.]) && 'Table'[can fulfil] = 0))
return IF(ISBLANK(result),1,0)

output:-

 

Samarth_18_0-1648535081207.png

 

Thanks,

Samarth

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

2 REPLIES 2
Samarth_18
Community Champion
Community Champion

Hi @learner03 ,

 

You can also try this:-

Result whole order fufil = 
var result = COUNTROWS(FILTER('Table','Table'[order no.] = EARLIER('Table'[order no.]) && 'Table'[can fulfil] = 0))
return IF(ISBLANK(result),1,0)

output:-

 

Samarth_18_0-1648535081207.png

 

Thanks,

Samarth

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood correctly your question, because I am confused about order number E and F.

However, please check the below picture and the attached pbix file. It shows the same result as yours.

Picture3.png

 

Result whole order fulfil CC = 
VAR currentorderno = Data[order no.]
VAR filtertable =
    FILTER ( Data, Data[order no.] = currentorderno && Data[can fulfil] <> 1 )
RETURN
    IF ( COUNTROWS ( filtertable ) > 0, 0, 1 )


Microsoft MVP



If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question





Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

May 2025 Monthly Update

Fabric Community Update - May 2025

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