Sub ½Æ»s¤À¶0804()
oPath = "D:\" & Format(Date, "yyyy-mm-dd")
On Error Resume Next: MkDir oPath: On Error GoTo 0
For Each sht In Sheets
theName = oPath & "\" & sht.Name & ".xls"
sht.Copy
ActiveWorkbook.SaveAs theName, xlNormal
ActiveWorkbook.Close True
Next
End Sub