day name

A

alekm

Hi,
I've got a date eg 23.2.2005. How can I find out what day it was (monday,
tuesday...). Also name for month?
Thanx

alek_mil
 
T

Tom Lake

alekm said:
Hi,
I've got a date eg 23.2.2005. How can I find out what day it was (monday,
tuesday...). Also name for month?
Thanx

? format(#9/4/1955#,"dddd")

will print Saturday.

? format(#9/4/1955#,"mmmm")

will print April.

In the US format, it will print Sunday and September, of course


Tom Lake
 
Top