Hi everyone
So I want a field to be visible if "Faulty equipment" is in the collection, and I have tried this and many other things but no luck.
!isBlank(Lookup(IncidentFactors.Value="Faulty equipment"))
I feel I am over thinking this and it must be super simple.
Brilliant!
Thanks Randy
You can use the following formula:
LookUp(IncidentFactors, Value="Faulty Equipment", true)
This will return true if the value exists in the source.
You can also use the following formula:
"Faulty Equipment" in IncidentFactors.Value
This also will return true if the value exists.
I hope this is helpful for you.
Alternatively, you can try:
!IsBlank(
Lookup(IncidentFactors, "Faulty equipment" in Value)
)
Thank you for your contribution, but this is not working either.
Assuming IncidentFactors is your collection and Value is the name of the single column within it, try:
!IsBlank(
Lookup(IncidentFactors, Value="Faulty equipment")
)
WarrenBelz
146,645
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,997
Most Valuable Professional