It looks good to me 🙂
Do either of the below options work?:
If(
IsEmpty(
Distinct(
Filter(
Automobili,
Assegnatario.Value = varUtente && Tipo_Veicolo.Value = "Furgone"
),
Title
).Result
),
Set(varTipo,true),
Set(varTipo,false)
)
If(
IsBlank(
First(
Distinct(
Filter(
Automobili,
Assegnatario.Value = varUtente && Tipo_Veicolo.Value = "Furgone"
),
Title
)
)
),
Set(varTipo,true),
Set(varTipo,false)
)
If(
IsBlank(
First(
Distinct(
Filter(
Automobili,
Assegnatario.Value = varUtente && Tipo_Veicolo.Value = "Furgone"
),
Title
)
).Result
),
Set(varTipo,true),
Set(varTipo,false)
)
All of them work for my end 🙂 . Let me know how it goes