cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
SushmaReddy
Helper I
Helper I

Get the count of records for Max date

Hi Team,

The requirement is to get the count of materials for Max date.

The below logic is getting the distinct count where i want to display the count.

VAR _M = SUMMARIZE(T1,T1[Material],
"MAX",MAX(T1[Date]),
"Status",CALCULATE(MAX(T1[Status]),
FILTER(T1,T1[Material]=EARLIER(T1[Material]))))
return
COUNTROWS(FILTER(_Mat,[Status]="Failed"))+0
Mat   Date               Status     Error
123   03-06-2022     Failed    GMDN required
123   03-06-2022     Failed    FDA required
The count should be 2
Thanks in advance
1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @SushmaReddy ,

You could create a measure or column as follow:

1.measure:

count = var _max=CALCULATE(MAX('T1'[Date]),ALLSELECTED(T1))
return CALCULATE(COUNT(T1[Material]),FILTER(ALLSELECTED(T1),[Material]=MAX('T1'[Material])&&[Date]=_max&&[Status]="Failed"))

2. column:

Column = 
 var _max=MAX('T1'[Date])
return CALCULATE(COUNT(T1[Material]),FILTER(ALLSELECTED(T1),[Material]=EARLIER('T1'[Material])&&[Date]=_max&&[Status]="Failed"))

The final show:

vyalanwumsft_0-1656987037773.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
SushmaReddy
Helper I
Helper I

The code is working and getting the correct count ....Thank you for the help

v-yalanwu-msft
Community Support
Community Support

Hi, @SushmaReddy ,

You could create a measure or column as follow:

1.measure:

count = var _max=CALCULATE(MAX('T1'[Date]),ALLSELECTED(T1))
return CALCULATE(COUNT(T1[Material]),FILTER(ALLSELECTED(T1),[Material]=MAX('T1'[Material])&&[Date]=_max&&[Status]="Failed"))

2. column:

Column = 
 var _max=MAX('T1'[Date])
return CALCULATE(COUNT(T1[Material]),FILTER(ALLSELECTED(T1),[Material]=EARLIER('T1'[Material])&&[Date]=_max&&[Status]="Failed"))

The final show:

vyalanwumsft_0-1656987037773.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors