Format Function in Expression Builder

N

nctl

I have the following code:

=Format$([month] & "/01/" & [year],"mmmm yyyy",0,0)

Which returns:

January 2010

I want it to return:

January
2010

How can I accomplish this? I have tried inserting spaces between mmmm and
yyyyy, but I cannot get the result I am looking for. Could someone tell me
how to make these two things appear on a sepereate line? Thanks.
 
D

Duane Hookom

Why not just use two controls?

Otherwise try:
=MonthName([Month]) & chr(13) & chr(10) & [Year]
 

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