Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I want to create summary by CustomerId and last 6 Year-Month sales to check if customer if frequent buyer or not. Then I'll just COUNTROWS of that table and I'll get result. But it isn't that easy.
Code I wrote is following:
ADDCOLUMNS (
FILTER (
CROSSJOIN (
SUMMARIZE (
'Sales',
'Sales'[ClientID],
Clients[ClientType]
),
SUMMARIZE ( 'Sales', Date[Year-Month] )
),
Clients[ClientType] = "Shop" && "Somehow filter last 6 Year-Month"
),
"Sales", [Sales]
)
I've got no idea how to filter last 6 Year-Month in that code. Is there someone who can help?
Hi @piotr_gor ,
Please try to get the maximum month and store it in the variable:
VAR MaxYearMonth = MAX ( Date[Year-Month] )
Then pass the variable:
ADDCOLUMNS (
FILTER (
CROSSJOIN (
SUMMARIZE (
'Sales',
'Sales'[ClientID],
Clients[ClientType]
),
SUMMARIZE ( 'Sales', Date[Year-Month] )
),
Clients[ClientType] = "Shop" &&
Date[Year-Month] > MaxYearMonth - 6
),
"Sales", [Sales]
)
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
146 | |
87 | |
66 | |
52 | |
46 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |