March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I have a problem with Power BI,
I use a table like this
1/01 1
1/01 1
2/01 1
5/01 -1
And I want to make a cumulate value like this
1/01 2
2/01 3
5/01 2
I use this DAX function
But when I use the date slicer, for exemple focus on 3/03 and 16/03 , i have this
I want that when i use date slicer, the data focus on the date selected but not affect the values. How can i do this ?
Thank you in advance
Solved! Go to Solution.
Hi @nr63bi ,
Please try below steps:
1. below is my test table
Table:
Date:
Date = CALENDAR(FIRSTDATE('Table'[Date]),LASTDATE('Table'[Date]))
Model:
2. create a measure with below dax formula
Measure =
VAR cur_date =
SELECTEDVALUE ( 'Table'[Date] )
VAR tmp =
FILTER ( ALL ( 'Table' ), [Date] <= cur_date )
RETURN
SUMX ( tmp, [Value] )
3. add a table visual with Table field and measure, add a slicer visual with Date table field
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @nr63bi ,
Please try below steps:
1. below is my test table
Table:
Date:
Date = CALENDAR(FIRSTDATE('Table'[Date]),LASTDATE('Table'[Date]))
Model:
2. create a measure with below dax formula
Measure =
VAR cur_date =
SELECTEDVALUE ( 'Table'[Date] )
VAR tmp =
FILTER ( ALL ( 'Table' ), [Date] <= cur_date )
RETURN
SUMX ( tmp, [Value] )
3. add a table visual with Table field and measure, add a slicer visual with Date table field
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You do that by using a disconnected table to feed your slicer.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
90 | |
90 | |
66 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |