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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
bml123
Post Patron
Post Patron

Check if client id exists in current year and doesn't exist in previous year

Hi,

 

I have a requirement to find if the client exists in current year but doesn't exist in previous year.

How do I achieve this?

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @bml123 

 

I simply simulated some data that would solve your problem in 2 ways.

vzhangti_0-1655879414275.png

20 and 30 are client ids that exist in this year and did not exist in the previous year.

 

Method 1:

Measure:

Measure = 
Var N1=CALCULATE(COUNT('Table'[client id]),
        FILTER(ALL('Table'),[client id]=SELECTEDVALUE('Table'[client id])&&YEAR([Date])=YEAR(TODAY())))
Var N2=CALCULATE(COUNT('Table'[client id]),
        FILTER(ALL('Table'),[client id]=SELECTEDVALUE('Table'[client id])&&YEAR([Date])=YEAR(TODAY())-1))
return
IF(N1>0&&N2=BLANK(),1,0)

vzhangti_1-1655879561893.png

 

Method 2:

Table:

Table 2 = 
Var table1=Filter(SUMMARIZE('Table','Table'[client id],'Table'[Date]),YEAR([Date])=YEAR(Today()))
Var table2=Filter(SUMMARIZE('Table','Table'[client id],'Table'[Date]),YEAR([Date])=YEAR(Today())-1)
return
Except(SUMMARIZE(table1,'Table'[client id]),SUMMARIZE(table2,'Table'[client id]))

vzhangti_2-1655879641194.png

Is there a way to output the results you expect?

 

Best Regards,

Community Support Team _Charlotte

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

4 REPLIES 4
sportive92003
Helper II
Helper II

Hi, It's working well for my need (put 1 as new client if purchase after more than 1 year). But the total appears 0 ! I still looking to put it as a number to have total and do a graph with it. Have some solution for it?

v-zhangti
Community Support
Community Support

Hi, @bml123 

 

I simply simulated some data that would solve your problem in 2 ways.

vzhangti_0-1655879414275.png

20 and 30 are client ids that exist in this year and did not exist in the previous year.

 

Method 1:

Measure:

Measure = 
Var N1=CALCULATE(COUNT('Table'[client id]),
        FILTER(ALL('Table'),[client id]=SELECTEDVALUE('Table'[client id])&&YEAR([Date])=YEAR(TODAY())))
Var N2=CALCULATE(COUNT('Table'[client id]),
        FILTER(ALL('Table'),[client id]=SELECTEDVALUE('Table'[client id])&&YEAR([Date])=YEAR(TODAY())-1))
return
IF(N1>0&&N2=BLANK(),1,0)

vzhangti_1-1655879561893.png

 

Method 2:

Table:

Table 2 = 
Var table1=Filter(SUMMARIZE('Table','Table'[client id],'Table'[Date]),YEAR([Date])=YEAR(Today()))
Var table2=Filter(SUMMARIZE('Table','Table'[client id],'Table'[Date]),YEAR([Date])=YEAR(Today())-1)
return
Except(SUMMARIZE(table1,'Table'[client id]),SUMMARIZE(table2,'Table'[client id]))

vzhangti_2-1655879641194.png

Is there a way to output the results you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-zhangti 

 

Thanks for this. How do I achieve the same for any year selected rather than current year?

lbendlin
Super User
Super User

Read about the EXCEPT()  DAX function.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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