Forum Discussion
pezakas
Helper I
3 years agoShowing data while dataset is filtered
Hello community, This is my dataset. The user always picks a date from a single selection slicer, that is using the "Dataflow_Date". I would like to create a measure so that when user sel...
NaveenGandhi
Memorable Member
3 years agoHello pezakas
Your question is bit confusing. You want sum of effort of previous year when user selects 31/1. That would look like below in a table visual. What would you want to see when user selects 28/2?
31/1 selected:
| Project ID | Effort(MDs) | Dataflow_Date | |
| ID001 | 12 | 31/01/2023 | (sum of effort of 2022) |
- pezakas3 years ago
Helper I
When user selects 28/02 , he should see the effort as of 31/01 of the same year.
- NaveenGandhi3 years ago
Memorable Member
pezakas
Try the below measure.
Effort PRevious =
VAR Prev_=
IF (
MONTH ( MAX ( Effort[Dataflow_Date] ) ) = 1,
CALCULATE (
SUM ( Effort[Effort(MDs)] ),
ALL ( Effort ),
PREVIOUSYEAR ( Effort[Dataflow_Date] )
),
CALCULATE (
SUM ( Effort[Effort(MDs)] ),
PREVIOUSMONTH ( Effort[Dataflow_Date] )
)
)
RETURN
Prev_Let me know if this helps.
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
- pezakas3 years ago
Helper I
Does this work if you select the January from date slicer? Or it returns blank()?
When you set ALL(Effort) it means you clear the whole table from filters , right?