Carwhore Posted June 4, 2012 Report Share Posted June 4, 2012 Can anyone that is familiar with excel write me a code for a birthday reminder for my customers.I need to list a lot (500+)Customer nameBirthdayCustomer addressCustomer phone numbervehicle boughtNotes of customerI need this columns so I can easily remember the customer, but only need a birthday reminder. Quote Link to comment Share on other sites More sharing options...
magley64 Posted June 4, 2012 Report Share Posted June 4, 2012 it would be super easy to do on the calendar in outlook... Quote Link to comment Share on other sites More sharing options...
Carwhore Posted June 4, 2012 Author Report Share Posted June 4, 2012 i dont have outlook Quote Link to comment Share on other sites More sharing options...
izhe4rael Posted June 4, 2012 Report Share Posted June 4, 2012 Google Calendar might work too. Quote Link to comment Share on other sites More sharing options...
cmh_sprint Posted June 4, 2012 Report Share Posted June 4, 2012 http://www.youtube.com/watch?v=uwaoP3A3Qyg Quote Link to comment Share on other sites More sharing options...
Cheech Posted June 4, 2012 Report Share Posted June 4, 2012 I don't think you're using the right program for this. Excel isn't designed to be constantly on and giving reminders, which is essentially what you're looking for it to do. In order to do this there would have to be some VBA macro or program running constantly behind the scenes, and making updates to said spreadsheet would be problematic at best. If you don't have access to Outlook, you'd be much better served with using Google Calendar and some sort of snap-in to it like an Android phone or device to give you reminders from it. Quote Link to comment Share on other sites More sharing options...
ScubaCinci Posted June 4, 2012 Report Share Posted June 4, 2012 It depends on the spreadsheet and how you use it. A VBA macro could be written to run on file open (or on demand with a button) to parse the customer birthday data and return values (i.e. customer name) in a dialogue box when today (mm/dd) = customer birthday. Any way you do it, it's not going to be very elegant as Excel is a poor tool for this sort of thing (as mentioned). Quote Link to comment Share on other sites More sharing options...
Cheech Posted June 4, 2012 Report Share Posted June 4, 2012 It depends on the spreadsheet and how you use it. A VBA macro could be written to run on file open (or on demand with a button) to parse the customer birthday data and return values (i.e. customer name) in a dialogue box when today (mm/dd) = customer birthday. Any way you do it, it's not going to be very elegant as Excel is a poor tool for this sort of thing (as mentioned).Yeah, you could have the macro run on open, but it either parses the sheet and runs once (so you'll have to keep doing it every day) or it continually runs and you won't be able to update the sheet itself. Either way, it's a shitty implementation. Quote Link to comment Share on other sites More sharing options...
magley64 Posted June 4, 2012 Report Share Posted June 4, 2012 consensus seems to be... there are plenty of free options out there to do this efficiently, don't waste time/effort trying to do it in excel.store the data in excel, sure, but use something else to give you reminders. Quote Link to comment Share on other sites More sharing options...
ScubaCinci Posted June 4, 2012 Report Share Posted June 4, 2012 Yeah, you could have the macro run on open, but it either parses the sheet and runs once (so you'll have to keep doing it every day) or it continually runs and you won't be able to update the sheet itself. Either way, it's a shitty implementation.If it ran once and done, it would give you all the birthdays for the day which satisfies the requirement. No need to run continuously as once the end of the data is reached it could return the results and exit. I'm assuming the user logs off for the day or shuts down. If not, it's easy to add a macro button they can hit once a day. Quote Link to comment Share on other sites More sharing options...
Carwhore Posted June 5, 2012 Author Report Share Posted June 5, 2012 This has an email function I don't need Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.