Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. 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()
)
)
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
78 | |
74 | |
69 | |
48 | |
40 |
User | Count |
---|---|
62 | |
41 | |
33 | |
30 | |
30 |