HOW TO USE SELECT FUNCTION ON A SLICER

I need help with the right expression for below

SELECT(Ticket[category],[created_by]=USEREMAIL())

,ISNOTBLANK([ABC_Comment])

,[status]<>'Completed')

 

NOTE: I want to display slicer only if the column ABC_Comment is not blank and status is not yet Completed from a Ticket table. Category is also a column in Ticket table

Solved Solved
0 8 62
1 ACCEPTED SOLUTION

The result of the formula needs to be TRUE or FALSE.  To do that, you need to use..

AND([created_by]=USEREMAIL(),ISNOTBLANK([ABC_Comment]),[status]<>'Completed')

View solution in original post

8 REPLIES 8

Are you saying you are using this in a slice? Or what is 'slicer'? If you are using it in a slice you need to return the key column value vs Ticket[category] unless [category] is your key column.

Achiever2023_0-1709671501263.png

Here is the screenshot, 

You are a bit all over the place here. Does your Tickets table have a [Email] column?

oh sorry, created_by

@AleksiAlkio answer should resolve your problem.

yes, thank you for sharing insight too.

The result of the formula needs to be TRUE or FALSE.  To do that, you need to use..

AND([created_by]=USEREMAIL(),ISNOTBLANK([ABC_Comment]),[status]<>'Completed')

Worked!

Thank you 

Top Labels in this Space