PC Review


Reply
Thread Tools Rate Thread

Adding a note and having it display on a spreadsheet

 
 
=?Utf-8?B?RGVubmlzMTE4OA==?=
Guest
Posts: n/a
 
      21st Sep 2007
Is there a way to have a note display or pop-up each time a spreadsheet is
opened?
 
Reply With Quote
 
 
 
 
=?Utf-8?B?QmFyYiBSZWluaGFyZHQ=?=
Guest
Posts: n/a
 
      21st Sep 2007
You could put something like this into your "ThisWorkbook" module.
Access the module with Alt F11, select the "ThisWorkbook" module and past
this in

Private Sub Workbook_Open()
MsgBox ("This is the message you want displayed")
End Sub

--
HTH,
Barb Reinhardt



"Dennis1188" wrote:

> Is there a way to have a note display or pop-up each time a spreadsheet is
> opened?

 
Reply With Quote
 
=?Utf-8?B?RGVubmlzMTE4OA==?=
Guest
Posts: n/a
 
      21st Sep 2007
That worked really well but is there a way to get rid of the "Macros contain
viruses" notice option?

"Barb Reinhardt" wrote:

> You could put something like this into your "ThisWorkbook" module.
> Access the module with Alt F11, select the "ThisWorkbook" module and past
> this in
>
> Private Sub Workbook_Open()
> MsgBox ("This is the message you want displayed")
> End Sub
>
> --
> HTH,
> Barb Reinhardt
>
>
>
> "Dennis1188" wrote:
>
> > Is there a way to have a note display or pop-up each time a spreadsheet is
> > opened?

 
Reply With Quote
 
Peo Sjoblom
Guest
Posts: n/a
 
      21st Sep 2007
If this is for you macro security can be set to low under
tools>macro>security (I wouldn't recommend it though). if not for you it is
up to the users, if they have it set to high it will not run at all


--


Regards,


Peo Sjoblom



"Dennis1188" <(E-Mail Removed)> wrote in message
news:AC2B533B-E807-47C3-A822-(E-Mail Removed)...
> That worked really well but is there a way to get rid of the "Macros
> contain
> viruses" notice option?
>
> "Barb Reinhardt" wrote:
>
>> You could put something like this into your "ThisWorkbook" module.
>> Access the module with Alt F11, select the "ThisWorkbook" module and past
>> this in
>>
>> Private Sub Workbook_Open()
>> MsgBox ("This is the message you want displayed")
>> End Sub
>>
>> --
>> HTH,
>> Barb Reinhardt
>>
>>
>>
>> "Dennis1188" wrote:
>>
>> > Is there a way to have a note display or pop-up each time a spreadsheet
>> > is
>> > opened?



 
Reply With Quote
 
=?Utf-8?B?QmFyYiBSZWluaGFyZHQ=?=
Guest
Posts: n/a
 
      21st Sep 2007
The users can also choose not to run macros when they open the file. I
suppose you could sign the macros somehow so that the message wouldn't come
up. I've only done that with my own files because I'm tired of the message.
--
HTH,
Barb Reinhardt



"Dennis1188" wrote:

> That worked really well but is there a way to get rid of the "Macros contain
> viruses" notice option?
>
> "Barb Reinhardt" wrote:
>
> > You could put something like this into your "ThisWorkbook" module.
> > Access the module with Alt F11, select the "ThisWorkbook" module and past
> > this in
> >
> > Private Sub Workbook_Open()
> > MsgBox ("This is the message you want displayed")
> > End Sub
> >
> > --
> > HTH,
> > Barb Reinhardt
> >
> >
> >
> > "Dennis1188" wrote:
> >
> > > Is there a way to have a note display or pop-up each time a spreadsheet is
> > > opened?

 
Reply With Quote
 
=?Utf-8?B?RGVubmlzMTE4OA==?=
Guest
Posts: n/a
 
      21st Sep 2007
I almost got it... Is it a big deal to sign the macro like you have done?

"Barb Reinhardt" wrote:

> The users can also choose not to run macros when they open the file. I
> suppose you could sign the macros somehow so that the message wouldn't come
> up. I've only done that with my own files because I'm tired of the message.
> --
> HTH,
> Barb Reinhardt
>
>
>
> "Dennis1188" wrote:
>
> > That worked really well but is there a way to get rid of the "Macros contain
> > viruses" notice option?
> >
> > "Barb Reinhardt" wrote:
> >
> > > You could put something like this into your "ThisWorkbook" module.
> > > Access the module with Alt F11, select the "ThisWorkbook" module and past
> > > this in
> > >
> > > Private Sub Workbook_Open()
> > > MsgBox ("This is the message you want displayed")
> > > End Sub
> > >
> > > --
> > > HTH,
> > > Barb Reinhardt
> > >
> > >
> > >
> > > "Dennis1188" wrote:
> > >
> > > > Is there a way to have a note display or pop-up each time a spreadsheet is
> > > > opened?

 
Reply With Quote
 
=?Utf-8?B?QmFyYiBSZWluaGFyZHQ=?=
Guest
Posts: n/a
 
      21st Sep 2007
Here some info on it.

http://office.microsoft.com/en-us/he...495551033.aspx
--
HTH,
Barb Reinhardt



"Dennis1188" wrote:

> I almost got it... Is it a big deal to sign the macro like you have done?
>
> "Barb Reinhardt" wrote:
>
> > The users can also choose not to run macros when they open the file. I
> > suppose you could sign the macros somehow so that the message wouldn't come
> > up. I've only done that with my own files because I'm tired of the message.
> > --
> > HTH,
> > Barb Reinhardt
> >
> >
> >
> > "Dennis1188" wrote:
> >
> > > That worked really well but is there a way to get rid of the "Macros contain
> > > viruses" notice option?
> > >
> > > "Barb Reinhardt" wrote:
> > >
> > > > You could put something like this into your "ThisWorkbook" module.
> > > > Access the module with Alt F11, select the "ThisWorkbook" module and past
> > > > this in
> > > >
> > > > Private Sub Workbook_Open()
> > > > MsgBox ("This is the message you want displayed")
> > > > End Sub
> > > >
> > > > --
> > > > HTH,
> > > > Barb Reinhardt
> > > >
> > > >
> > > >
> > > > "Dennis1188" wrote:
> > > >
> > > > > Is there a way to have a note display or pop-up each time a spreadsheet is
> > > > > opened?

 
Reply With Quote
 
Peo Sjoblom
Guest
Posts: n/a
 
      21st Sep 2007
Look in help for "digital certificate"


--


Regards,


Peo Sjoblom



"Dennis1188" <(E-Mail Removed)> wrote in message
news:8F3FB7C2-F893-4C62-B072-(E-Mail Removed)...
>I almost got it... Is it a big deal to sign the macro like you have done?
>
> "Barb Reinhardt" wrote:
>
>> The users can also choose not to run macros when they open the file. I
>> suppose you could sign the macros somehow so that the message wouldn't
>> come
>> up. I've only done that with my own files because I'm tired of the
>> message.
>> --
>> HTH,
>> Barb Reinhardt
>>
>>
>>
>> "Dennis1188" wrote:
>>
>> > That worked really well but is there a way to get rid of the "Macros
>> > contain
>> > viruses" notice option?
>> >
>> > "Barb Reinhardt" wrote:
>> >
>> > > You could put something like this into your "ThisWorkbook" module.
>> > > Access the module with Alt F11, select the "ThisWorkbook" module and
>> > > past
>> > > this in
>> > >
>> > > Private Sub Workbook_Open()
>> > > MsgBox ("This is the message you want displayed")
>> > > End Sub
>> > >
>> > > --
>> > > HTH,
>> > > Barb Reinhardt
>> > >
>> > >
>> > >
>> > > "Dennis1188" wrote:
>> > >
>> > > > Is there a way to have a note display or pop-up each time a
>> > > > spreadsheet is
>> > > > opened?



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding a note/comment =?Utf-8?B?ZWRqdQ==?= Microsoft Excel Misc 3 28th Mar 2007 01:14 PM
save spreadsheet as note pad =?Utf-8?B?aWNlYnJlYWtlcjkxNA==?= Microsoft Excel Misc 1 11th Feb 2006 09:55 AM
Adding a note to the calander dushkin@012.net.il Microsoft Outlook 3 30th Nov 2004 02:09 PM
Adding a note to a record Ruth Microsoft Access 1 1st Mar 2004 05:16 AM
Adding note to all reports Todd Microsoft Access Reports 5 23rd Dec 2003 09:16 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:07 AM.