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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Count ids present two and three consequent days

Hi all,

I've the following datasource

 

DateID
01/03/2019aaaaa
02/03/2019aaaaa
03/03/2019aaaaa
04/03/2019bbbbb
05/03/2019bbbbb
06/03/2019bbbbb
07/03/2019ccccc
08/03/2019ccccc
09/03/2019ccccc
10/03/2019aaaaa
11/03/2019aaaaa
12/03/2019ccccc

 

I've to represent per date:

  • the number of ids present in the date and the day before
  • the number of ids present  in the date, in the day before and two days before

How to solve this in dax?

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @Anonymous ,

 

Create below calculated columns.

Previous date = LOOKUPVALUE(Test_5[Date],Test_5[ID],Test_5[ID],Test_5[Date],Test_5[Date]-1)
2 days before = LOOKUPVALUE(Test_5[Date],Test_5[ID],Test_5[ID],Test_5[Date],Test_5[Date]-2)

two consequent days = IF(Test_5[Previous date]<>BLANK(),"Yes","No")
three consequent days = IF(Test_5[Previous date]<>BLANK()&&[2 days before]<>BLANK(),"Yes","No")

1.PNG

 

Display  below measures into card visual.

count 2 days = CALCULATE(DISTINCTCOUNT(Test_5[ID]),Test_5[two consequent days]="Yes")
count 3 days = CALCULATE(DISTINCTCOUNT(Test_5[ID]),Test_5[three consequent days]="Yes")

2.PNG

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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
v-yulgu-msft
Employee
Employee

Hi @Anonymous ,

 

Create below calculated columns.

Previous date = LOOKUPVALUE(Test_5[Date],Test_5[ID],Test_5[ID],Test_5[Date],Test_5[Date]-1)
2 days before = LOOKUPVALUE(Test_5[Date],Test_5[ID],Test_5[ID],Test_5[Date],Test_5[Date]-2)

two consequent days = IF(Test_5[Previous date]<>BLANK(),"Yes","No")
three consequent days = IF(Test_5[Previous date]<>BLANK()&&[2 days before]<>BLANK(),"Yes","No")

1.PNG

 

Display  below measures into card visual.

count 2 days = CALCULATE(DISTINCTCOUNT(Test_5[ID]),Test_5[two consequent days]="Yes")
count 3 days = CALCULATE(DISTINCTCOUNT(Test_5[ID]),Test_5[three consequent days]="Yes")

2.PNG

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks a lot.

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.