how do i make a file read only for everyone else but me? Here is the code i used.
ActiveWorkbook.SaveAs "G:\Common\A A Never Out Reviews\" & Format(Date, "mmddyy") & ".xls", FileFormat:= _
xlExcel9795, Password:="", WriteResPassword:="", ReadOnlyRecommended:=True
if i put in a password then only i can open the file, if i used readonlyrecommended= true, then if you answer no to the open as read only question then you can make changes to the original file.
ActiveWorkbook.SaveAs "G:\Common\A A Never Out Reviews\" & Format(Date, "mmddyy") & ".xls", FileFormat:= _
xlExcel9795, Password:="", WriteResPassword:="", ReadOnlyRecommended:=True
if i put in a password then only i can open the file, if i used readonlyrecommended= true, then if you answer no to the open as read only question then you can make changes to the original file.