Hi everyone !
It seems other people posted similar topic but I canโt find my solution. So here it is :
I have a sheet gathering a lot of data (BIGDATA) : on each row appears the user NICKNAME (+ other data). The column name is [ID].
I want to create a slice of BIGDATA filtered by the actual user connected to the App.
For this I have a second sheet USER_LIST that links each NICKNAME (column [NickName] to their EMAIL.
My slice formula is :
[ID] = ANY(SELECT(USER_LIST[NickName],[Email]=USEREMAIL()))
It works fine except that when the field [ID] of BIGDATA is empty (which is possible and acceptable) the line with no ID appears in the slice which I donโt want.
I tried the ISNOTBLANK() function but doesnโt work.
Any idea ?
Try with:
AND(
ISNOTBLANK([ID]),
[ID] = ANY(SELECT(USER_LIST[NickName],[Email]=USEREMAIL()))
)
Thanks you Levent
Okay it makes sense and it works !
Best regards
Xavier
User | Count |
---|---|
17 | |
12 | |
5 | |
5 | |
5 |