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

List of all tags in text object

Hi friends,

Is it possible to have list of all tags MonthName in text object like below

September 2012, July 2013, August 2013, September 2013

Thanks,

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

an numeric expression you have into your cloud, maybe

concat(DISTINCT MonthName, ', ',YEAR*100+MONTH)

View solution in original post

6 Replies
swuehl
MVP
MVP

Not sure if I understand your request properly, but maybe

=concat(DISTINCT MonthName, ', ')

Anonymous
Not applicable
Author

Yes, exactly like it, but order by Months.

I should use dual function?

Thanks,

Clever_Anjos
Employee
Employee

concat(DISTINCT MonthName, ', ',<a sort expression>)

Anonymous
Not applicable
Author

What the expression for sort MonthName

order by MonthName?

Clever_Anjos
Employee
Employee

an numeric expression you have into your cloud, maybe

concat(DISTINCT MonthName, ', ',YEAR*100+MONTH)

Anonymous
Not applicable
Author

Nice job