Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I want to count items where sourcecodes start with 'WLIG'.
Can we do something like that:
=count({<source_Item LIKE {'$(CodeSource)'}>} Item)
CodeSource is a variable and sourceèitem anditem are fields
Thanks
Try a search expression for your element set:
=count({<source_Item = {"$(CodeSource)*"}>} Item)
Please note the double quotes to indicate a search expression.
Try a search expression for your element set:
=count({<source_Item = {"$(CodeSource)*"}>} Item)
Please note the double quotes to indicate a search expression.
Fantastic. Thank you