Dear Experts,
I want to delete the value of cell 'c4' at the time of closing the file automatically. Please suggest me a macro for it.
Thanking you in anticipation.
Mukesh
Dear Experts,
I want to delete the value of cell 'c4' at the time of closing the file automatically. Please suggest me a macro for it.
Thanking you in anticipation.
Mukesh
Sub Auto_Close()
Range("C4").FormulaR1C1 = ""
End Sub
Hello mehmetcik,
Thank you but it's not working automatically. I have to manually run the macro by clicking. I want to delete the value of cells 'b4, c4' automatically at the time of closing the file. There is a little modification in cell address because in the morning I forgot to mention it. I want to delete the value of both cells 'b4, c4' automatically at the time of closing the file and make the cells blank. Next time when I open the file the cells must be blank for use.
Thanking you in anticipation.
Please see the attachment. I want to delete the names at the time of closing the file:
Baviskar 'b4' and Mukesh 'c4'
Mukesh
I love this kind of stuff
Try pasting this code into the "ThisWorkbook" module.
![]()
Sub Workbook_BeforeClose(Cancel As Boolean) ThisWorkbook.Worksheets("Sheet1").Range("B4:C4").ClearContents End Sub
*******************************************************
HELP WANTED! (Links to Forum threads)
Trying to create reusable code for Custom Events at Workbook (not Application) level
*******************************************************
Hello mc84excel,
I pasted the code in the module and run it but I'm getting error name conflict with vba object. I gave the name workbook_beforeclose.
Please send me a sample attached file with code for better understanding.
Thanking you in anticipation.
Mukesh
Last edited by mc84excel; 06-02-2013 at 09:58 PM.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks