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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Luk92
New Member

DAX - first occurs from a group of values and counting them

Hi all,

I'm pretty new to DAX and Power BI and I've got a probem that I need to resolve. I'm trying to get 2 things from one table.
 Table, lets call it Tab1, looks like this:

Luk92_0-1694607892089.png


I would like to create a measure to:
1. Check the earliest date when status1, status2 or status3 occurs 
2. Count when one of those values (status1, status2 or status3) occurs

It should look like that:

Luk92_1-1694608085519.png

 

Could you help me? 🙂

1 ACCEPTED SOLUTION
ThxAlot
Super User
Super User

Cnt Status.pbix

 

ThxAlot_0-1694613310499.png



Expertise = List.Accumulate(


        {Days as from Today},


        {Skills and Knowledge},


        (Current, Everyday) => Current & Day.LearnAndPractise(Everyday)


)



View solution in original post

3 REPLIES 3
ThxAlot
Super User
Super User

Cnt Status.pbix

 

ThxAlot_0-1694613310499.png



Expertise = List.Accumulate(


        {Days as from Today},


        {Skills and Knowledge},


        (Current, Everyday) => Current & Day.LearnAndPractise(Everyday)


)



Hi,

thanks for the solution 🙂 I have to admit that I've made a mistake when showing how I would like the resault table to look like. It's a small change, maybe you could help. I just don't want the ID 4 show in that table at all, because it dosen't have status that I want to count.

Luk92_0-1694615054131.png



EDIT: Ok, I've got it 🙂 Just changed "0" in RETURN to BLANK().

A small tweak does the trick

ThxAlot_0-1694628203487.png



Expertise = List.Accumulate(


        {Days as from Today},


        {Skills and Knowledge},


        (Current, Everyday) => Current & Day.LearnAndPractise(Everyday)


)



Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors