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

If function with distinct count

Hi,

 

I have a database as below and need to populate my client status as new or old. A client is considered as new if the 'date' and 'live date' are same. For rows 2 and 3, client is same however it has a new deal marked as -002.  client 12303 is counted twice for data source B. I need to populate the second row as blank as it has already be counted once in row 2.

 

Client Status =  IF('Table1'[Date] ='Table1'[Live_Date] , "New", )

 

How do i use distinct count?

 

Apologies for too many complications.

 

Data sourcedateLive_dateDeal IDClient IDStatus I am gettingREQUIRED STATUS
A26-Oct01-SepA00034A00034oldold
B15-Oct15-Oct012302-00112302newnew
B26-Oct26-Oct012302-00212302newold
A01-Sep01-sep102538-001102538newnew
A26-Oct26-oct102538-002102538

new

old
B26-Oct01-Sep0928abc-010928abcoldold
B26-Oct01-Sep0928abc-020928abcoldold
A01-Sep01-Sep1856XYZ541856XYZ54newnew

 

1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

assuming the deals are done in chronogical order you could then rephrase the logic to

for a given customer, if the Table1[date] is equal to the the Table1[Live_date] of the first deal made for that customer then new

which corresponds to this code

Status =
VAR CurrentCustomer = Table1[Client ID]
VAR CurrentDate = Table1[Live_date]
VAR FirstDealDate =
CALCULATE (
MIN ( Table1[Live_date] ),
FILTER ( Table1, Table1[Client ID] = CurrentCustomer )
)
RETURN
IF ( Table1[date] = FirstDealDate, "new", "old" )

which gives your expected output



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

2 REPLIES 2
Stachu
Community Champion
Community Champion

assuming the deals are done in chronogical order you could then rephrase the logic to

for a given customer, if the Table1[date] is equal to the the Table1[Live_date] of the first deal made for that customer then new

which corresponds to this code

Status =
VAR CurrentCustomer = Table1[Client ID]
VAR CurrentDate = Table1[Live_date]
VAR FirstDealDate =
CALCULATE (
MIN ( Table1[Live_date] ),
FILTER ( Table1, Table1[Client ID] = CurrentCustomer )
)
RETURN
IF ( Table1[date] = FirstDealDate, "new", "old" )

which gives your expected output



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Anonymous
Not applicable

Hi @Stachu,

 

thanks. That helped!! 

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.