I want fectch list using two condition in same column

Hi 

 

CStatus
B-Supv1
B-Scan2
B-Bscan2
B-Seg1
B-Load3
S-Seg2
S-Load3

In this table want to list 2 status at a time 

used  this code not working-- select(Atend_List[List], [Status]=1 and 2)

Example :

status 1, 2, 3

i want to dropdown status 2 and 3 

can any help me in listing status 2 and 3

0 2 40
2 REPLIES 2

It's unclear what you're trying to accomplish.

One clear issue is your expression's syntax. Review the syntax of the AND function.

AND([Status]=1, [Status]=2)

It seems also likely that the AND function may not be what you need. Contrast the purpose of the AND and OR functions.

OR([Status]=1, [Status]=2)

 

hi dbaum 

thank you 

select(Atend_List[List],and ([Status]<>3, [Status]<>2 )) 

this syntax worked

Top Labels in this Space