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.
I am new to power Bi, where i need to create a report for daily attrited members based on the previous month data.
I daily snapshot dates, new members acquired each snapshot date.
I need to calculate last month member as of last month.
here is the logic i need to get.
Last month members using the last month snapshot date.
daily net = total members - last month members
closed = new members - daily net, i have atatched the data for reference, can you please help.
Solved! Go to Solution.
Hi @Swathykorivi, try these measures below, and if you encounter any issues, let me know.
LastMonthMembers =
CALCULATE(
SUM('Table'[New Members]),
FILTER(
'Table',
'Table'[Date] =
CALCULATE(
MAX('Table'[Date]),
MONTH('Table'[Date]) = MONTH(TODAY()) - 1
)
)
)
DailyNet = SUM('Table'[Total accounts]) - [LastMonthMembers]
Closed = SUM('Table'[New Members]) - [DailyNet]
Did I answer your question? If so, please mark my post as the solution! ✔️
Your Kudos are much appreciated! Proud to be a Solution Supplier!
Hi @Swathykorivi, try these measures below, and if you encounter any issues, let me know.
LastMonthMembers =
CALCULATE(
SUM('Table'[New Members]),
FILTER(
'Table',
'Table'[Date] =
CALCULATE(
MAX('Table'[Date]),
MONTH('Table'[Date]) = MONTH(TODAY()) - 1
)
)
)
DailyNet = SUM('Table'[Total accounts]) - [LastMonthMembers]
Closed = SUM('Table'[New Members]) - [DailyNet]
Did I answer your question? If so, please mark my post as the solution! ✔️
Your Kudos are much appreciated! Proud to be a Solution Supplier!
User | Count |
---|---|
21 | |
14 | |
11 | |
7 | |
5 |
User | Count |
---|---|
23 | |
23 | |
20 | |
15 | |
10 |