How to make SAVE work after Underlining in Excel2000

  • Thread starter Thread starter Mahes
  • Start date Start date
M

Mahes

On worksheet if underline is given & try to save the same is rejected. Error
report is created, help me how to solve the problem.
 
Just a wild guess...

Try changing to a different printer or different printer driver.

Maybe it's how excel wants to display the underline that's causing the trouble.
 
Should work:

Sub Macro2()
'
' Macro2 Macro
' Macro recorded 11/2/2008 by James Ravenswood
'
With ActiveWorkbook
.SaveAs Filename:="C:\Documents and Settings\Owner\Desktop\_.xls"
End With
End Sub
 
Back
Top