Forum Discussion
Possible to add reminders or flags within a cell?
You can create appointments directly from Excel in Outlook with VBA. The following is a VBA code that you can easily adapt to your needs. You can also read the parameters from cells.
Here is a small example:
Option Explicit
Sub Event_Outlook()
Dim ol, OutApp As Object, apptOutApp As Object
Set ol = CreateObject("Outlook.Application")
Set apptOutApp = ol.CreateItem(1)
With apptOutApp
'.Start = 'Start of the appointment, date and time in different cells
'.End = 'End of the appointment
.Subject = "Projectmeeting" 'Betreff
'.Duration = 'Duration, in minutes if fixed
.body = " Hello everybody," & vbCrLf & vbCrLf & _
" this is an invitation to the project meeting "
.RequiredAttendees = "max@mustermann.de; john@doe.com" ' Email addresses
.Location = "Meeting room" 'Place of the appointment
.Categories = "Projectmeeting" 'Assign Category
.ReminderSet = False 'Set reminder
.ReminderMinutesBeforeStart = 43200 'Number of minutes in which the reminder before the _
Appointment appears
.ReminderPlaySound = True ' The reminder tone is played
' .Save 'can set or not set
.Display 'Open the appointment in Outlook
End With
Set apptOutApp = Nothing
Set OutApp = Nothing
End Sub
‚ungetested
I would be happy to know if I could help.
Nikolino
I know I don't know anything (Socrates)
* Kindly Mark and Vote this reply if it helps please, as it will be beneficial to more Community members reading here.
- LoriB600Oct 02, 2020Copper Contributor
I wish I understood this!
Looks like it's an option but for me this is very complicated. Might just not be a simple solution and I was certainly hoping there might be and I was just missing it.
Any other suggestions?
- NikolinoDEOct 02, 2020Gold Contributor
If you're not comfortable with VBA, try this option.
Activate from Outlook: With Outlook you can be reminded of important appointments visually and acoustically in all programs.
Reminder function in Excel: How to proceed
Go to "View" in the menu.
Click the Toolbar, then Customize.
In the selection list go to “Categories” and then “Extras”.
Select “Create Microsoft Outlook Task”.
Hold down the mouse button and drag this command into your Word toolbar.
Release the mouse button and close this window.I would be happy to know if I could help.
Nikolino
I know I don't know anything (Socrates)
* Kindly Mark and Vote this reply if it helps please, as it will be beneficial to more Community members reading here.
- BradfordCopelandFeb 08, 2023Copper Contributor
NikolinoDE Hi Nikolino! I have a similar question. Let me set the scene for you:
I am a healthcare credentialing specialist and use Excel for tracking all things related to the work I do. I have many clients who are healthcare providers and they seek my services to present them favorably to insurance companies in hopes of becoming in-network (i.e., a doctor that takes a patient's insurance plan.)
I have ten insurance companies that I solicit on behalf of my clients and following up on the applications I submit is critical. I would love to find a way to create a follow up reminder from the note I made about applying to an insurance company. Below is a screenshot of a portion of the "payor notes." Currently, my way of tracking follow up is putting the date in bold (as seen in yellow in the screenshot.)
I would love to take this to the next level and turn the cell containing the notes where follow up is needed and somehow link it to Outlook to create a reminder.
Is there a way to do that without writing code? Thank you so very much in advance for your help.