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

Add text to lable

I am presenting data by quarter, with the labels generated by formula.  I would like to add text after it displays the quarter. Here is one of the labels:

=(QuarterName (SetDateYear (Today(), max (total Year (listed))), 0))

This displays the current quarter, but I would like to add the text 'Listings' after it. Can anyone help?

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

=(QuarterName (SetDateYear (Today(), max (total Year (listed))), 0)) & ' listings'

View solution in original post

4 Replies
Not applicable
Author

Hi,

Try you made a table box whit only field listed?. i think that would be good.

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

=(QuarterName (SetDateYear (Today(), max (total Year (listed))), 0)) & ' listings'

Not applicable
Author

Thanks. How can I format QuarterName to show 1Q12, instead of Jan-Mar 2012?

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try this

=Ceil(Month(Today())/4) & 'Q' & Right(Year(Today()), 2)

Regards,

Jagan.