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

Adding a column for first time transaction

First_Transaction_TableFirst_Transaction_Table

Hi,

I have a table where I need to add a column which tells if it is first transaction of a customer (Is_First_Transactions). How can I acheive this given all other columns ? Idea is to use this column as a filter/slicer in my report so that I can see what products customers are buying on their first visit and what they are buying other times. 

 

Thanks!

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hi @Anonymous 

try to create a new calculated column 

Rank_Transaction = 
RANKX(FILTER(
'Table',
'Table'[Customer_ID]=EARLIER('Table'[Customer_ID])
),
'Table'[Date],
,ASC)

then filter by Rank_Transaction=1

 

do not hesitate to give a kudo to useful posts and mark solutions as solution

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

2 REPLIES 2
az38
Community Champion
Community Champion

Hi @Anonymous 

try to create a new calculated column 

Rank_Transaction = 
RANKX(FILTER(
'Table',
'Table'[Customer_ID]=EARLIER('Table'[Customer_ID])
),
'Table'[Date],
,ASC)

then filter by Rank_Transaction=1

 

do not hesitate to give a kudo to useful posts and mark solutions as solution

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Anonymous
Not applicable

@az38  Great solution. Ranking helped me with other things as well. Thanks!

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.

Top Solution Authors