Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
First_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!
Solved! Go to Solution.
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
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
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
5 |