Please Help for "Valid_If"

Hello,

I canโ€™t use a formula that may seem simple to you โ€ฆ

First, in valid_if I put (ALPHA [ALPHA] and everything is ok, I see my list of people.

BUT I want to add a condition: I want the list to appear only for people [ALPHA] when the column [Grade] = โ€œMdcโ€.

I tried:

  • (ALPHA [ALPHA], (ALPHA [Grade] = โ€œMdcโ€, true))

  • (ALPHA [ALPHA], AND (ALPHA [Grade] = โ€œMdcโ€, true))

  • FILTER (ALPHA [ALPHA], (ALPHA [Grade] = โ€œMdcโ€, true))

BUT Nothing works

I am not an app sheet expert but I need your help. Sorry for my english and thank you very much.

0 8 306
8 REPLIES 8

Bahbus
New Member

IFS("Mdc"=[Grade], ALPHA[ALPHA])

I just tried but in the ALPHA form disappeared.

So I tried (โ€œMdcโ€ = ALPHA [Grade], ALPHA [ALPHA]) BUT error:

โ€œCannot compare Text with List in (โ€œMdcโ€ = ALPHA [Grade])โ€

Do you have another idea?

Thanks you.

(Mdcโ€ = [Grade], ALPHA [ALPHA])
Please try this

The result filters but does not really give me the wanted list.

Details of my data source:

My form opens on this sheet:

and my ALPHA and Grade list that I want to filter is on this another sheet:


(I created an enumList with Ref)

SO the expresion is ALPHA[ALPHA] is Ok but I canโ€™t add the [Grade] condition.

Iโ€™m sure itโ€™s not that complicated โ€ฆbut enough for me

This?

FILTER("ALPHA", [Grade]="Mdc")

ยซ Cannot compare List with Text in ([Grade]) = ยซ Mdc ยป)โ€ฆ

Its related to the column types:

FILTER("ALPHA", IN([Grade], {"Mdc"}))

Hi,

IFS(โ€œxxx@yyy.comโ€=USEREMAIL(),Users[Full Name])

here I am listing all the available users if email is matches(User is table name).

Hope it will help you.

Thanks,
Vinit

Top Labels in this Space