How can I customize the Follow Up Flag message in Quick Steps?

Status
Not open for further replies.

mrfunkyfunk

Member
Outlook version
Outlook 2010 64 bit
Email Account
Exchange Server
I am creating various Quick Steps, and I would like to customize the follow up flag message, so that I don't have to type it in every time. Is there a way to do this?
 
No, if you can't set the for follow up text in the quick step, you'll need to type it in as you do it. Or use VBA instead.

You can't call VBA from a quick step, but you could try a macro such as this to set the text with a second click. Or you could use a macro in place of the quick step.

Code:
Public Sub AssignFlag() 
 
Set oItem = ActiveExplorer.Selection.Item(1) 
 
oItem.FlagRequest = "We need to call back in 5 days" 
 
End Sub
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
S Outlook 2021 How to customize colors Outlook 2021 & Office 2021 on PC Using Outlook 1
e_a_g_l_e_p_i Trying to customize the ribbon but can't figure this one out Using Outlook 3
S Outlook 2016 Understand and customize prepended behavior of recurring task Using Outlook 0
S Customize the autocolor font choices for replying/forwarding messages Outlook VBA and Custom Forms 2
Y Outlook Task View - Table Format - Customize Reminder Time to Drop-Down Selection Using Outlook 2
V not able to change name in customize Ribbon Outlook VBA and Custom Forms 1
B Customize contact record phone fields Using Outlook 2
A Customize meeting form. Private notices Outlook VBA and Custom Forms 3
J Customize Attachement Security Warning Using Outlook 1
T Customize Outlook flag Using Outlook 1
H I need a developer to customize an Outlook Contact form Outlook VBA and Custom Forms 0
S How can I Customize Message Header in both Reading Pane and Open Message Design? Using Outlook 1
M Customize Comments / Notes Section time stamp on Contact Records BCM (Business Contact Manager) 0
Diane Poremsky Customize the Outlook Toolbar, Ribbon or QAT Using Outlook 0
M Customize CreateItemFromTemplate Macro Outlook VBA and Custom Forms 2
Ankit Agrawal Customize themes in outlook 2010 Using Outlook 1
M please customize this code Using Outlook 1
M please customize this code Using Outlook 1
B Customize OWA page to open in a new window when logging in Exchange Server Administration 1
G Customize Outlook Today folder Using Outlook 0
O BCM 2010 - Customize a field with a consecutive number? BCM (Business Contact Manager) 1
C Anyone found a way to customize search? BCM (Business Contact Manager) 5
L How to customize the Advanced Find form Outlook VBA and Custom Forms 1
D Re: How to customize the Advanced Find form Outlook VBA and Custom Forms 1
T Customize button image for separate Outlook forms region Outlook VBA and Custom Forms 2
R How to implement customize toolbar in outlook? Outlook VBA and Custom Forms 1
N Customize current view (in Account List) Business Contact Manager BCM (Business Contact Manager) 1
N How to add fields to customize reports in BCM? BCM (Business Contact Manager) 3
C Outlook 365 Can you change the follow up colour? Using Outlook 1
justicefriends How to set a flag to follow up using VBA - for addressee in TO field Outlook VBA and Custom Forms 11
R Follow up button doesn't working neither the reminders in BCM BCM (Business Contact Manager) 0
A Flag Message for Follow Up after sending Outlook VBA and Custom Forms 1
V Changing default date for task follow-up buttons Using Outlook 2
M Setting flag follow up for next business day Outlook VBA and Custom Forms 1
O Outlook 2016 follow-up flags--how can I add dates? Using Outlook 1
G Flag for Follow Up with a customized duetime Using Outlook 1
G Follow up and Using Outlook 1
K check for sender, follow to my personal adress and delete the sent folder. Outlook VBA and Custom Forms 1
oliv- HOW TO GET PROPERTIES FOLLOW UP Outlook VBA and Custom Forms 7
D No Follow up when making new form Outlook VBA and Custom Forms 2
rc4524 Create auto follow-up reminder email for already sent messages Outlook VBA and Custom Forms 1
smokiibear follow-up flag fro Tasks in Outlook 2010 Using Outlook 5
N Adding a note to a e-mail which has been marked as follow up Using Outlook 1
A Post Form Follow Up Flag Using Outlook 4
J How to set a flag to follow up using VBA for outlook 2003 Using Outlook 10
F Apply Follow up flag ONLY to the people cc'd. Using Outlook 1
R Flagged for Follow Up Search folder MIA after PST export/import Using Outlook 1
M adding marked emails under follow-up Using Outlook 2
2 Flag for Follow up or create new task Using Outlook 1
N Mark or follow up emails in shared mailbox Using Outlook 2

Similar threads

Back
Top