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
earltom
Frequent Visitor

FInd Max Value for a Date and Customer and then display that value in ALL dates

BI.jpg

The original data is on Top and my attemped solution is below that , the data is time dependant so it may change as year goes by.

I am able to get the data for the date selected but I would like it to display/overwrite in all rows/dates for that customer

 

DAX

sel_we_dt is a measure - Selected Value (date)

 

mTest3 = CALCULATE(MAX('Store List'[scan_lfl]),FILTER(('Store List'),[date_sk]=[sel_we_dt]))

 

3 REPLIES 3
earltom
Frequent Visitor

CustomerEnd of WeekGood/Bad Store IndSales
2766-Mar-22N1000
27613-Mar-22Y2000
27620-Mar-22Y1500
27627-Mar-22Y1700
2763-Apr-22N800

 

A store has sales every week and they ae classified as good or bad store by its Sales ,if a user makes a data selection I want the Good/Bad Indicator to overwrite the other weeks to that weeks Good/Bad Ind.

 

So if 27-Mar-22 is selected then the table should be :

 

CustomerEnd of WeekGood/Bad Store IndSales
2766-Mar-22Y1000
27613-Mar-22Y2000
27620-Mar-22Y1500
27627-Mar-22Y1700
    

 

or  3-April-2022 is selected then table should look like this but there are multiple customers so it needs to be grouped by each customer

 

CustomerEnd of WeekGood/Bad Store IndSales
2766-Mar-22N1000
27613-Mar-22N2000
27620-Mar-22N1500
27627-Mar-22N1700
2763-Apr-22N800
amitchandak
Super User
Super User

@earltom , The information you have provided is not making the problem clear to me. Can you please explain with an example.
refer if this blog can help

https://medium.com/chandakamit/power-bi-when-i-felt-lazy-and-i-needed-too-many-measures-ed8de20d9f79

 

Instead of max date based on selection, it can based on customer

calculate(Max(Table[Date]), filter(allselected(customer), Customer[ID] = max(Customer[ID]) ) )


Appreciate your Kudos.


The date is a selected value 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors