Hi,
for a customer list where many colleagues work in and edit it, I am looking for:
A function for BeforeClose, the author has to put his/her name manually in a specific cell (C45).
Appreciate!
Hi,
for a customer list where many colleagues work in and edit it, I am looking for:
A function for BeforeClose, the author has to put his/her name manually in a specific cell (C45).
Appreciate!
Last edited by dibe111; 10-10-2011 at 03:47 AM.
Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code. Posting code without them makes your code hard to read and difficult to be copied for testing. Highlight your code and click the # at the top of your post window. For more information about these and other tags, found here
If you're happy with someone's help, click that little star at the bottom left of their post to give them Reps.
---Keep on Coding in the Free World---
Edited. Thanks.
In the workbook beforeclose event include this code.Entered name will be put in C45 cell of sheet1.
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Sheets("Sheet1").Range("C45").Value = InputBox("Enter name")
End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks