Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show all the selected months

hello,

Is there any function that shows  all the selected months? For example I select Juniary, February and March. How can i get the value Jun,Feb,March like in current selection box?

4 Replies
kuczynska
Creator III
Creator III

You can use text object and use GetFieldSelections () function,

example: GetFieldSelections (YourMonthFieldName)

This will return values only if at least 1 month has been selected, otherwise it will return Null.

sasiparupudi1
Master III
Master III

try like this GetFieldSelections(Month,',')

Not applicable
Author

thank you guys!  it works!

Not applicable
Author

Like Sasidhar said, that will work.

But when you select for example the months jan till August, the result of that function will be

"NOT sept, oct, nov, dec".

If you need all months, you should use :  GetFieldSelections(Month,',' , 12)