Question
6
Replies
239
Views
Posted: August 8, 2018
Last activity: August 11, 2018
Nested functions syntax?
Hi!
I would like to call the IsInPageList(lookFor, lookAt, lookIn) function but the lookFor parameter is a value list so I have to loop through that too. I was thinking passing the function IsInPropertyList(lookFor, lookIn) function in the lookFor to loop through that value list. Would this be possible? If so, could you please provide the correct syntax &/ example to achieving this?
Thanks so much!
IsInPropertyList(LookFor, LookIn) — Useful for searching through the elements of a
Value List
property. It returns true if the string lookFor is equal to one of the values in theValue List
(orValue Group)
property named lookIn.The output of function IsInPropertyList is a boolean. So you cannot pass it into function IsInPageList.