Now i have measure
it created for date slicer to ignore date selected and show always Blanks
194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
ALL('Table'),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
)
)
But when i put slicer with users, it attach to each user, wich have blank date and blank sum, same sum
But i need to attach only if username is blank
So how to write measure? i think must be sometnig like
194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
ALL('Table'[date]),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
)
)
Solved! Go to Solution.
@Analitika , Try without all
194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
('Table'[date]),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
))
//if need add removefilters
194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
('Table'[date]),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
),removefilters('Table'[date]))
@Analitika , Try without all
194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
('Table'[date]),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
))
//if need add removefilters
194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
('Table'[date]),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
),removefilters('Table'[date]))
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
190 | |
68 | |
67 | |
57 | |
55 |
User | Count |
---|---|
181 | |
105 | |
89 | |
73 | |
70 |