Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
hello everyone here i have an example of my table:
Date Value
12/22/2022 | -1 |
12/23/2022 | 3 |
12/27/2022 | -9 |
12/28/2022 | 8 |
12/29/2022 | 2 |
12/30/2022 | -4 |
1/2/2023 | 7 |
1/3/2023 | 0 |
1/4/2023 | 2 |
1/5/2023 | -10 |
1/6/2023 | -10 |
1/7/2023 | -6 |
1/8/2023 | -3 |
1/9/2023 | -9 |
1/10/2023 | 6 |
1/11/2023 | -9 |
1/12/2023 | 5 |
i am getting this result
what i want is a chart that accumualtes values from min selected date till max selected date so from december 22 2022 till january 2 2022
so it will be something like
dec 22 value = -1
dec 23 value = -1 + 3 = 2
dec 24 value = -1 + 3 - 9 = -7
....
Solved! Go to Solution.
HI
thanks for clarifying
have updated this file: https://1drv.ms/u/s!AkGuKJKxOlnAeqVqsn2-BsSfKWM?e=n2BZNW
this is the measure:
Hi @eliasayyy ,
I have created a simple sample, please refer to my pbix file to see if it helps you.
Create a measure.
Measure = VAR _MAX=MAXX(ALLSELECTED('Table'),'Table'[DATE])
VAR _MIN=MINX(ALLSELECTED('Table'),'Table'[DATE])
RETURN
CALCULATE(SUM('Table'[VALUE]),FILTER(ALL('Table'),'Table'[DATE]<=SELECTEDVALUE('Table'[DATE])&&'Table'[DATE]>=_MIN&&'Table'[DATE]<=_MAX))
The value would change by the date.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @eliasayyy ,
I have created a simple sample, please refer to my pbix file to see if it helps you.
Create a measure.
Measure = VAR _MAX=MAXX(ALLSELECTED('Table'),'Table'[DATE])
VAR _MIN=MINX(ALLSELECTED('Table'),'Table'[DATE])
RETURN
CALCULATE(SUM('Table'[VALUE]),FILTER(ALL('Table'),'Table'[DATE]<=SELECTEDVALUE('Table'[DATE])&&'Table'[DATE]>=_MIN&&'Table'[DATE]<=_MAX))
The value would change by the date.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @eliasayyy ,
Try this solution:
https://1drv.ms/u/s!AkGuKJKxOlnAeaeLxBPZXb_-Lx4?e=mEyo9q
Appreciate a thumbs up if this is helpful.
Please accept this as the solution if your question is resolved.
hello @adudani i already have this metric thank you but i want an accumulted value of the sum so for example the sum of values on dec 22 was -1 then on dec 23 the number was 3 and in dec 27 value was -9 so in theory the graph value should show
dec 22 = -1
dec 23 = 2
dec 27 = -7
HI
thanks for clarifying
have updated this file: https://1drv.ms/u/s!AkGuKJKxOlnAeqVqsn2-BsSfKWM?e=n2BZNW
this is the measure:
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |