updating date automatically

L

lilbit27

=MonthName(Month(DateAdd("m",-1,Date()))) & " " &
Year(DateAdd("m",-1,Date()))

is there a way to make this say feb 2006 instead of february 2006
 
W

Wakajeje

Hi lilbit27,

This is quite easy if you don't mind creating another expression to
package your final requirement. Supposing your first result's output
name is "First", a formula like:

= Left([First],3) & " " & Right([First],4)
or
= Left([First],3) & Right([First],5)

will solve your promblem. Cheers!
 
W

Wakajeje

Hi lilbit27,

This is quite easy if you don't mind creating another expression to
package your final requirement. Supposing your first result's output
name is "First", a formula like:

= Left([First],3) & " " & Right([First],4)
or
= Left([First],3) & Right([First],5)

will solve your problem. Cheers!
 

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

Similar Threads


Top