#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Reminder Macro

I need to setup something to remind me to check a clolumn when I go to save a
worksheet. I am not sure if a macro is the best way to go about this. I
basically need a box to pop up when I hit save to say checselected column.
Can someone help me do this. I f I use a macro can you walk me through it?
Thanks
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,939
Default Reminder Macro

You need a macro for something like that. Right click on the XL icon in the
top left of the screen beside File in the menu. Select View Code. The VB
editor will open. Paste the following...

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
If MsgBox("Did you remember to check the selected column?", _
vbYesNo, "Column Check") = vbNo Then Cancel = True
End Sub

Before a save operation is completed it will as you if you check the
selected column. If you answer No then it will abort the save...
--
HTH...

Jim Thomlinson


"Help IN" wrote:

I need to setup something to remind me to check a clolumn when I go to save a
worksheet. I am not sure if a macro is the best way to go about this. I
basically need a box to pop up when I hit save to say checselected column.
Can someone help me do this. I f I use a macro can you walk me through it?
Thanks

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 772
Default Reminder Macro

It looks like my last post was 'lost'.
Hit alt+F11, then ctl+R to bring up the project window, it should be on the
left and contain icons showing your sheets and a This Workbook icon,
double-click the ThisWorkbook icon and paste this there
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
MsgBox "Check Column F"

End Sub
keep in mind that this will still save, repost if you want to verify before
you save and not save if you didn't verify.
--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"Help IN" wrote:

I need to setup something to remind me to check a clolumn when I go to save a
worksheet. I am not sure if a macro is the best way to go about this. I
basically need a box to pop up when I hit save to say checselected column.
Can someone help me do this. I f I use a macro can you walk me through it?
Thanks

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Reminder horseman Excel Discussion (Misc queries) 1 September 24th 07 04:34 PM
pop up box reminder laidebug Excel Discussion (Misc queries) 2 August 10th 07 05:40 PM
Reminder in excel horseman Excel Discussion (Misc queries) 2 July 5th 06 01:49 PM
Setting a reminder up Shep Excel Worksheet Functions 2 June 23rd 05 10:25 AM
Pop-Up Reminder Tony Excel Discussion (Misc queries) 3 March 4th 05 10:49 AM


All times are GMT +1. The time now is 12:43 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"