Text Formula

C

Christopher Naveen

Hi,

Pls. refer the below mentioned formula. I wanted the Text to Display as "Oct
Sales" (means referring to the next month). I tried a lot using this formula
but can't able find a solution. Can anybody help me on this?

=text(MONTH(TODAY())+1,"MMM")&" "&"Sales"

Thanks in Advance!

-Christ
 
K

klswvu

=CHOOSE((MONTH(TODAY())+1),"JAN","FEB","MAR","APR","MAY","JUN","JUL","AUG","SEP","OCT","NOV","DEC")&" Sales"

Month returns a value ie 9
 
D

Dana DeLouis

=text(MONTH(TODAY())+1,"MMM")&" "&"Sales"

Just another option:

=TEXT(EOMONTH(TODAY(),1),"mmm") & " Sales"

--
Dana DeLouis
 
D

David Biddulph

If you put the formula =MONTH(TODAY())+1 in a cell, and format it first as a
number (or general) and then as a date, then you may see what is going
wrong.
Then try the same with =DATE(YEAR(TODAY(),MONTH(TODAY())+1,1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top