Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi.
I have a bookmark, BM01, storing selections on 2 fields: ProductID and ProductCategory.
Is there a way to retrieve this selection data similar to the way that GetFieldSelections(ProductID) retrieves selection data?
i.e. I want to be able to store the bookmark selection values for each field in a variable.
Is this possible, and how?
Thanks!
maybe using set analysis:
=concat({BOOKMARKNAME} DISTINCT ProductID,' ,')
Simply apply the bookmark and retrieve the selections from the fields themselves.
Thanks.
Is there a way to do this without applying the bookmark at all?
maybe using set analysis:
=concat({BOOKMARKNAME} DISTINCT ProductID,' ,')
It works! Thanks so much!