The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi guys
Here's the data set
As you can see the last column is unique value.
I would like basically to have a cumulative sum by month (1st column) of this Payout_Monthly column
Cumulative sum (Jan/Feb) = 1412,14+1412,14 = 2824 (YTD FEB)
any ideas
Thanks
Solved! Go to Solution.
Hi,@ ckolahi
According to your description, you want to deduplicate according to the [Month] field and find the sum of [Payout_Monthly]. Right?
Here are the steps you can follow:
(1)This is my test data:
(2) We can create a measure: “Cumulative sum”
Cumulative sum =
SUMX (
SUMMARIZE ( 'Test', 'Test'[Month], 'Test'[Payout_Monthly] ),
[Payout_Monthly]
)
(3)Then we can test in the card and it can meet your need:
If this method does not meet your needs, you can provide us your sample data without sensitive data, or detailed input and output sample data, so that we can better help for you.
Best Regards
Hi,@ ckolahi
According to your description, you want to deduplicate according to the [Month] field and find the sum of [Payout_Monthly]. Right?
Here are the steps you can follow:
(1)This is my test data:
(2) We can create a measure: “Cumulative sum”
Cumulative sum =
SUMX (
SUMMARIZE ( 'Test', 'Test'[Month], 'Test'[Payout_Monthly] ),
[Payout_Monthly]
)
(3)Then we can test in the card and it can meet your need:
If this method does not meet your needs, you can provide us your sample data without sensitive data, or detailed input and output sample data, so that we can better help for you.
Best Regards
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
11 | |
10 | |
10 | |
9 |