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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
kpatel49
Frequent Visitor

Calculate # of transactions per user per month

Hey Guys, 

I have a purchase table that shows Purchase Date, Purchase ID, User ID, and Purchase Amount.

ie:

DatePurchase IDUser IDAmount

5/1/2022

P315
5/3/2022P4123
6/1/2022P5115
4/1/2022P1216
4/18/2022P2218
6/2/2022P62100
6/2/2022P72120


My objective is to count the number of users per month that have made over 13 transcations, and spent over $1,000.  So basically i need to calculate per month how many transactions each unique user made as well as sum up how much each user spent each month.  And then from there I only want to count the users that had more than 13 transaction and spent over 1000 for that specific month. 
Trying to figure the best way to calculate this.  Any help would be great

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@kpatel49 , try a measure like

 

countx(filter(summarize(Table, Table[User], Table[Month Year] , "_1", countrows(Table), "_1", sum(Table[Amount])), [_1] >13 && [_2] > 1000),[User])

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@kpatel49 , try a measure like

 

countx(filter(summarize(Table, Table[User], Table[Month Year] , "_1", countrows(Table), "_1", sum(Table[Amount])), [_1] >13 && [_2] > 1000),[User])

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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