I want to run below VBA code when I save the excel document. I can able to run this code at once but (Not on save) it\'s not working anymore. Could you please help me how can I
Not sure if I understood your question correctly, but the BeforeSave Event fires just before saving the file.
So you would need to put the following in ThisWorkbook module:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) CopyToOtherCell End sub