Hi,
I want to show 'No URL' where url is not available ("") for any party. But that needs an indexing. This is for one party. If we want to do it for multiple parties, Can someone please suggest how can I do the index to get the actual result
Discussion posts and replies are publicly visible
Thanks, I got the answer.
One more way
apply(if(rule!APN_isBlank(_), "No URL", _), local!url)
That works, but also, it's kinda going backwards. a!forEach() is supposed to negate the need for almost any of the primitive looping functions (afaik the only one it can't directly replace is reduce()). And for good reason - the primitive functions and partial evaluation are a nightmare for code readability and maintainability.