From experience I have found that file names cannot be saved with either \ or / in them as they refer to directory structures.
You can however save a file with the full date or any other formatted date you wish by using a string variable to hold that days date and then inserting that variable in place of the filename in VBA code.
Try this
dim DateOfFile as string
DateOfFile = Format(now(), "dd-mm-yy")
ActiveWorkbook.SaveAs Filename:=DateOfFile & ".xls"
obviously you may want to put a filepath in the filename.
Hope this helps.
Chris
Sorry Chris I probably didn't make myself clear enough. When I wrote worksheets I was refering to the individual sheets in a work book rather than the file name of the entire work book. I was wondering if there is any way of doing this using a macro.
Thanx.
Sheets.Add.Name = Format(Now(), "dd-mm-yy")