The Community will be undergoing maintenance on Friday January 10 at 2:00pm - Saturday January 11 at 2:00pm EST, and will be "read-only." For assistance during this time, please visit our Help Center.
Feb 10, 2020 12:01 PM
I am trying to link a few different drop box URL’s to our table. The case use would be if designer X is selected from the multi select drop down, return URL(A), if designer XX is selected, return URL(B), if designer XXX is selected, return URL© and so on. I have a field with the multi select options and I have a field where I want the corresponding URL’s to populate once the designer is selected.
Is this possible?
Solved! Go to Solution.
Feb 10, 2020 01:01 PM
Yes, its possible. You could do this with either SWITCH() or IF(), but SWITCH() is more efficient:
SWITCH({Multiple Select Field Name}, 'Designer A', 'URL A', 'Designer B', 'URL B', 'Designer C', 'URL C', ...)
Feb 10, 2020 01:01 PM
Yes, its possible. You could do this with either SWITCH() or IF(), but SWITCH() is more efficient:
SWITCH({Multiple Select Field Name}, 'Designer A', 'URL A', 'Designer B', 'URL B', 'Designer C', 'URL C', ...)
Feb 10, 2020 01:03 PM
So ‘URL A’ is the actual URL? And it works as a URL?
Feb 10, 2020 01:07 PM
That worked! Thanks a bunch! I was not doing the correct punctuation. So thankful for knowledgeable and generous people here!