PC Review


Reply
Thread Tools Rate Thread

Any way to be notified if someone else is in the same sheet?

 
 
JoAnn
Guest
Posts: n/a
 
      26th Mar 2008
We have a spreadsheet used by multiple people from within MS Sharepoint.

1st ... I'm looking for a way to generate a message that tells the user that
someone else is in the spreadsheet as soon as they open it. My current plan
is to tell them it's in use & to enter their data then use File >Send to to
send it to me for later posting.

All files automatically appear with a "READ ONLY" indicator when we open
them from within Sharepoint, so I can't rely on that as an indicator.

2nd ... I would ultimately like to create some kind of temporary
collection/storage sheet or form that allows users to enter their information
& save it individually until it can be merged with the real spreadsheet.

Preferably something that can be accessed by multiple users & generate
individual docs/sheets -- like Word users clicking a template & generating an
individual doc off the template instead of the template itself.

Does anyone have any idea how I can do either of these things? I've written
some macros & created user forms in Word but nothing in Excel yet.

Thanks for your help!

--
JoAnn
 
Reply With Quote
 
 
 
 
Nigel
Guest
Posts: n/a
 
      26th Mar 2008
Check the features and functions of SharePoint, I am pretty sure you can do
all you want from there. You might need to get your IS department to set it
up if you are on a business network.

--

Regards,
Nigel
(E-Mail Removed)



"JoAnn" <(E-Mail Removed)> wrote in message
news:BB92B06E-3B8B-40E7-B251-(E-Mail Removed)...
> We have a spreadsheet used by multiple people from within MS Sharepoint.
>
> 1st ... I'm looking for a way to generate a message that tells the user
> that
> someone else is in the spreadsheet as soon as they open it. My current
> plan
> is to tell them it's in use & to enter their data then use File >Send to
> to
> send it to me for later posting.
>
> All files automatically appear with a "READ ONLY" indicator when we open
> them from within Sharepoint, so I can't rely on that as an indicator.
>
> 2nd ... I would ultimately like to create some kind of temporary
> collection/storage sheet or form that allows users to enter their
> information
> & save it individually until it can be merged with the real spreadsheet.
>
> Preferably something that can be accessed by multiple users & generate
> individual docs/sheets -- like Word users clicking a template & generating
> an
> individual doc off the template instead of the template itself.
>
> Does anyone have any idea how I can do either of these things? I've
> written
> some macros & created user forms in Word but nothing in Excel yet.
>
> Thanks for your help!
>
> --
> JoAnn


 
Reply With Quote
 
JoAnn
Guest
Posts: n/a
 
      26th Mar 2008
Thanks for your reply ... unfortunately, we have just started
customizing/using Sharepoint & our IT resources are tied up with other
Sharepoint issues that take higher precedence ... bottom line, they won't be
able to get to it for months.

Any way to do what I want from within Excel? Even just the 1st piece would
be a big help to us.

--
JoAnn


"Nigel" wrote:

> Check the features and functions of SharePoint, I am pretty sure you can do
> all you want from there. You might need to get your IS department to set it
> up if you are on a business network.
>
> --
>
> Regards,
> Nigel
> (E-Mail Removed)
>
>
>
> "JoAnn" <(E-Mail Removed)> wrote in message
> news:BB92B06E-3B8B-40E7-B251-(E-Mail Removed)...
> > We have a spreadsheet used by multiple people from within MS Sharepoint.
> >
> > 1st ... I'm looking for a way to generate a message that tells the user
> > that
> > someone else is in the spreadsheet as soon as they open it. My current
> > plan
> > is to tell them it's in use & to enter their data then use File >Send to
> > to
> > send it to me for later posting.
> >
> > All files automatically appear with a "READ ONLY" indicator when we open
> > them from within Sharepoint, so I can't rely on that as an indicator.
> >
> > 2nd ... I would ultimately like to create some kind of temporary
> > collection/storage sheet or form that allows users to enter their
> > information
> > & save it individually until it can be merged with the real spreadsheet.
> >
> > Preferably something that can be accessed by multiple users & generate
> > individual docs/sheets -- like Word users clicking a template & generating
> > an
> > individual doc off the template instead of the template itself.
> >
> > Does anyone have any idea how I can do either of these things? I've
> > written
> > some macros & created user forms in Word but nothing in Excel yet.
> >
> > Thanks for your help!
> >
> > --
> > JoAnn

>

 
Reply With Quote
 
Nigel
Guest
Posts: n/a
 
      27th Mar 2008
' This function checks to see if a file is open or not. If the file is

' already open, it returns True. If the file is not open, it returns

' False. Otherwise, a run-time error will occur because there is

' some other problem accessing the file.



Function IsFileOpen(filename As String)

Dim filenum As Integer, errnum As Integer



On Error Resume Next ' Turn error checking off.

filenum = FreeFile() ' Get a free file number.

' Attempt to open the file and lock it.

Open filename For Input Lock Read As #filenum

Close filenum ' Close the file.

errnum = Err ' Save the error number that occurred.

On Error GoTo 0 ' Turn error checking back on.



' Check to see which error occurred.

Select Case errnum



' No error occurred.

' File is NOT already open by another user.

Case 0

IsFileOpen = False



' Error number for "Permission Denied."

' File is already opened by another user.

Case 70

IsFileOpen = True



' Another error occurred.

Case Else

Error errnum

End Select

End Function




--

Regards,
Nigel
(E-Mail Removed)



"JoAnn" <(E-Mail Removed)> wrote in message
news:C641FF28-A2A9-40BB-BADD-(E-Mail Removed)...
> Thanks for your reply ... unfortunately, we have just started
> customizing/using Sharepoint & our IT resources are tied up with other
> Sharepoint issues that take higher precedence ... bottom line, they won't
> be
> able to get to it for months.
>
> Any way to do what I want from within Excel? Even just the 1st piece
> would
> be a big help to us.
>
> --
> JoAnn
>
>
> "Nigel" wrote:
>
>> Check the features and functions of SharePoint, I am pretty sure you can
>> do
>> all you want from there. You might need to get your IS department to set
>> it
>> up if you are on a business network.
>>
>> --
>>
>> Regards,
>> Nigel
>> (E-Mail Removed)
>>
>>
>>
>> "JoAnn" <(E-Mail Removed)> wrote in message
>> news:BB92B06E-3B8B-40E7-B251-(E-Mail Removed)...
>> > We have a spreadsheet used by multiple people from within MS
>> > Sharepoint.
>> >
>> > 1st ... I'm looking for a way to generate a message that tells the user
>> > that
>> > someone else is in the spreadsheet as soon as they open it. My current
>> > plan
>> > is to tell them it's in use & to enter their data then use File >Send
>> > to
>> > to
>> > send it to me for later posting.
>> >
>> > All files automatically appear with a "READ ONLY" indicator when we
>> > open
>> > them from within Sharepoint, so I can't rely on that as an indicator.
>> >
>> > 2nd ... I would ultimately like to create some kind of temporary
>> > collection/storage sheet or form that allows users to enter their
>> > information
>> > & save it individually until it can be merged with the real
>> > spreadsheet.
>> >
>> > Preferably something that can be accessed by multiple users & generate
>> > individual docs/sheets -- like Word users clicking a template &
>> > generating
>> > an
>> > individual doc off the template instead of the template itself.
>> >
>> > Does anyone have any idea how I can do either of these things? I've
>> > written
>> > some macros & created user forms in Word but nothing in Excel yet.
>> >
>> > Thanks for your help!
>> >
>> > --
>> > JoAnn

>>


 
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
Never get notified???? Phillip Microsoft Access 3 20th Feb 2010 11:15 PM
I Do Not Get Notified =?Utf-8?B?RGluYWtp?= Microsoft Outlook Discussion 0 20th Jan 2007 01:16 AM
how to be notified of new msgs ? =?Utf-8?B?YmVzdG9mY29tcHV0ZXI=?= Microsoft Outlook Installation 1 21st Aug 2005 04:17 PM
How do I get notified when a TrackBar changes value? =?Utf-8?B?bWNydXo=?= Microsoft Dot NET Compact Framework 3 29th Apr 2005 09:00 PM
Re: How to get notified when a new SP is available? Peter Foot [MVP] Microsoft Dot NET Compact Framework 1 22nd Sep 2003 07:10 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:31 PM.