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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
pprasadravi
Helper I
Helper I

Need help on DAX

Hi,

I have a situation where I want to compare the product price by customer and display the results based on from selected batch and To selected batch as shown below. 

 

I have three different scenarions to complete this report.

1.  Product purchased From Selected Batch but not in To Selected Batch

2. Product purchased To Selected Batch but not in From Selected Batch

3. Product purchased  From and To Selected Batches but the cost is different.
Source Data:

pprasadravi_0-1656426080723.png

Report

pprasadravi_2-1656426144135.png

 

Could you please give me an idea on how I can implement the solution?

 

Thanks

Ravi Potturi

 

 

3 REPLIES 3
pprasadravi
Helper I
Helper I

Hi amitchandak,

Thank you so much for the quick response. I think suggested solution should work for me. I will check it and let you know if I see any issues.

 

Ravi Potturi

amitchandak
Super User
Super User

@pprasadravi , for that, create independent table using distinct values of Batch 

 

Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE

 

Then you can have measure like

 

calculate(Sum(Table[Cost]), filter(Table, Table[Batch] in values(Batch1[Batch]) &&  not(Table[Batch] in values(Batch2[Batch]) ) ) )

Hi Amit Chandak,

I am exremly sorry for the delayed response.

I think independent table many not work for my scenario. I think I need in memory table that should holds the  data based batch ID selection in the slicer. 

I followed article https://www.sqlbi.com/articles/understanding-data-lineage-in-dax/ but no success. 
Does it make sense?

Thanks

Ravi Potturi

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors