
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Get Possible Values for a Field
Hi
Is there a way of getting the Possible Values of a Field. [Taking into account the effect of selections on associated fields / tables]
As in a bit like GetPossibleCount(fieldname) , but I need the possible values returned not the count.
Best Regards, Bill
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Maybe
=concat(fieldname, ', ')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Bill,
I used it once to get the values in a listbox ,
But a used it in Macro,
as,
SET ProObject = ActiveDocument.GetSheetObject("Products")
valProduct = ProObject.GetPossibleValues
here "Products" is Chart Id of listbox,
and in valProduct you get the Array of All the Possible Values.
Check if it Helps You in anyway.
Regards,
Ravikant


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this:
concat({<Field = P(Field)>}distinct Field, ',')
Hope this helps!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yup, perfect.
I just need to add the distinct for my scenario.
=concat( distinct [Audit Stats Airline IATA Code] , ', ')
Many Thanks, Bill

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Bill
you can use GetFieldSelections(Fieldname)
best regards
Chris
