Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
I have a date slicer which refer to Date[Date],
relations on 'Table'[Date] - Date[Date]
also i have measure
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
'Table',
'Table'[State] IN { "on", "edit" } &&
'Table'[Date] = blank()
),
ALL(Date[Date])
)
But it not working if date slicer is active,
Dont work
if i delete date slicer it works
works without slicer
Solved! Go to Solution.
Hi @Analitika
it looks like its better to use ALL() inside FILTER statement like
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
ALL(Date[Date]),
'Table'[State] IN { "on", "edit" } &&
'Table'[Date] = blank()
)
)
Hi @Analitika
it looks like its better to use ALL() inside FILTER statement like
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
ALL(Date[Date]),
'Table'[State] IN { "on", "edit" } &&
'Table'[Date] = blank()
)
)
User | Count |
---|---|
84 | |
70 | |
68 | |
58 | |
50 |
User | Count |
---|---|
43 | |
41 | |
34 | |
32 | |
31 |