Forum Discussion
Vijay_Uppala
Dec 13, 2021Copper Contributor
Lookup for a value in an array
Hello, I have a use case where I have to look up for a value that can be in an array and output a value from the corresponding output array. Here is my input table. I have a Server Name column whi...
- Dec 14, 2021
PeterBartholomew1
Dec 14, 2021Silver Contributor
Using 365 notation
= CONCAT(IF(virtualMachine=@VM, server, ""))
or to return the servers as an array
= MAP(VM,
LAMBDA(v,
CONCAT(IF(virtualMachine=v, server, ""))
)
)