PC Review


Reply
Thread Tools Rate Thread

Could I jump to another Sheet by clicking on a cell

 
 
Jean
Guest
Posts: n/a
 
      30th Sep 2007
Hi,

I would like make a code to Jump from one Sheet (Sheet(client)For example)
to another Sheet (sheet(john)for example) only by clicking on specific
Cell on sheet(client), the text in cell(john) will be the name of the
already created sheet(john)& when sheet(john) become the active sheet the
code on start to quick in?
What I really need to know is if I can call a code by clicking on a
specific cell in a worksheet?
Thank you.

Jean


 
Reply With Quote
 
 
 
 
Gord Dibben
Guest
Posts: n/a
 
      30th Sep 2007
Enter the word John in a cell on client sheet.

Right-click on that cell and "Hyperlink"

Place in this document.

Select John sheet and a cell to jump to and OK

Click on John in client sheet to jump to John sheet.

I don't understand the rest of it.............. "the code on start to quick in?"

Do you want some code to run after you have jumped to John sheet?

If so, sheet activate code can be placed in the module of John sheet.

Private Sub Worksheet_Activate()
'your code or a call to a macro goes here
End Sub


Gord Dibben MS Excel MVP


On Sun, 30 Sep 2007 03:47:18 -0000, Jean <morlan(;>?)@mindspring.com> wrote:

>Hi,
>
>I would like make a code to Jump from one Sheet (Sheet(client)For example)
>to another Sheet (sheet(john)for example) only by clicking on specific
>Cell on sheet(client), the text in cell(john) will be the name of the
>already created sheet(john)& when sheet(john) become the active sheet the
>code on start to quick in?
>What I really need to know is if I can call a code by clicking on a
>specific cell in a worksheet?
>Thank you.
>
>Jean
>
>


 
Reply With Quote
 
Ron Coderre
Guest
Posts: n/a
 
      30th Sep 2007
You may not need a program to accomplish what you want.
Try a hyperlink:

From the Excel Main Menu: <insert><hyperlink>
Enter the text to display
Click the [Place in this Document] button
Select the sheet and cell to link to
Click the [OK] button

Is that something you can work with?
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)

"Jean ?)@mindspring.com>" <morlan(;> wrote in message
news:Xns984DF1EDB3989morlanmindspringcom@216.168.3.70...
> Hi,
>
> I would like make a code to Jump from one Sheet (Sheet(client)For example)
> to another Sheet (sheet(john)for example) only by clicking on specific
> Cell on sheet(client), the text in cell(john) will be the name of the
> already created sheet(john)& when sheet(john) become the active sheet the
> code on start to quick in?
> What I really need to know is if I can call a code by clicking on a
> specific cell in a worksheet?
> Thank you.
>
> Jean
>
>



 
Reply With Quote
 
Jean
Guest
Posts: n/a
 
      30th Sep 2007
"Ron Coderre" <(E-Mail Removed)> wrote in
news:(E-Mail Removed):

> You may not need a program to accomplish what you want.
> Try a hyperlink:
>
> From the Excel Main Menu: <insert><hyperlink>
> Enter the text to display
> Click the [Place in this Document] button
> Select the sheet and cell to link to
> Click the [OK] button
>
> Is that something you can work with?
> --------------------------
>
> Regards,
>
> Ron (XL2003, Win XP)
> Microsoft MVP (Excel)
>
> "Jean ?)@mindspring.com>" <morlan(;> wrote in message
> news:Xns984DF1EDB3989morlanmindspringcom@216.168.3.70...
>> Hi,
>>
>> I would like make a code to Jump from one Sheet (Sheet(client)For
>> example) to another Sheet (sheet(john)for example) only by clicking
>> on specific Cell on sheet(client), the text in cell(john) will be
>> the name of the already created sheet(john)& when sheet(john) become
>> the active sheet the code on start to quick in?
>> What I really need to know is if I can call a code by clicking on a
>> specific cell in a worksheet?
>> Thank you.
>>
>> Jean
>>
>>

>
>


Thank you for your response.
This solution is good but I have something as 300 links to do &
I was thinking more as something as ListBox but without Lisbox (cliking
directly in WorkSheet(Client) on the name of the client"John" to call a
code which make a search trough all sheets in the workbook to find the
Sheet with the same name as the one I clicked on the Sheet(Client).
Any Idea?
Thank a lot anyway.

Jean
 
Reply With Quote
 
Jean
Guest
Posts: n/a
 
      30th Sep 2007
Gord Dibben <gorddibbATshawDOTca> wrote in
news:(E-Mail Removed):

> Enter the word John in a cell on client sheet.
>
> Right-click on that cell and "Hyperlink"
>
> Place in this document.
>
> Select John sheet and a cell to jump to and OK
>
> Click on John in client sheet to jump to John sheet.
>
> I don't understand the rest of it.............. "the code on start to
> quick in?"
>
> Do you want some code to run after you have jumped to John sheet?
>
> If so, sheet activate code can be placed in the module of John sheet.
>
> Private Sub Worksheet_Activate()
> 'your code or a call to a macro goes here
> End Sub
>
>
> Gord Dibben MS Excel MVP
>
>
> On Sun, 30 Sep 2007 03:47:18 -0000, Jean <morlan(;>?)@mindspring.com>
> wrote:
>
>>Hi,
>>
>>I would like make a code to Jump from one Sheet (Sheet(client)For
>>example) to another Sheet (sheet(john)for example) only by clicking
>>on specific Cell on sheet(client), the text in cell(john) will be the
>>name of the already created sheet(john)& when sheet(john) become the
>>active sheet the code on start to quick in?
>>What I really need to know is if I can call a code by clicking on a
>>specific cell in a worksheet?
>>Thank you.
>>
>>Jean
>>
>>

>


Thank you for your response.
This solution is good but I have something as 300 links to do &
I was thinking more as something as ListBox but without Lisbox (cliking
directly in WorkSheet(Client) on the name of the client"John" to call a
code which make a search trough all sheets in the workbook to find the
Sheet with the same name as the one I clicked on the Sheet(Client).
Any Idea?
Thank a lot anyway.

Jean
 
Reply With Quote
 
=?Utf-8?B?SkxHV2hpeg==?=
Guest
Posts: n/a
 
      30th Sep 2007
I would think that you could load your ListBox with the 300 sheet references
and then use something like:

Worksheets(ListBox1.Value).Activate

in a click event to call the sheet you want. Of course the sheet references
would have to include the workbook name if not in the same workbook as your
code sheet.
But, it shouild work OK as long as all the workbooks are open.

"Jean ?)@mindspring.com>" wrote:

> "Ron Coderre" <(E-Mail Removed)> wrote in
> news:(E-Mail Removed):
>
> > You may not need a program to accomplish what you want.
> > Try a hyperlink:
> >
> > From the Excel Main Menu: <insert><hyperlink>
> > Enter the text to display
> > Click the [Place in this Document] button
> > Select the sheet and cell to link to
> > Click the [OK] button
> >
> > Is that something you can work with?
> > --------------------------
> >
> > Regards,
> >
> > Ron (XL2003, Win XP)
> > Microsoft MVP (Excel)
> >
> > "Jean ?)@mindspring.com>" <morlan(;> wrote in message
> > news:Xns984DF1EDB3989morlanmindspringcom@216.168.3.70...
> >> Hi,
> >>
> >> I would like make a code to Jump from one Sheet (Sheet(client)For
> >> example) to another Sheet (sheet(john)for example) only by clicking
> >> on specific Cell on sheet(client), the text in cell(john) will be
> >> the name of the already created sheet(john)& when sheet(john) become
> >> the active sheet the code on start to quick in?
> >> What I really need to know is if I can call a code by clicking on a
> >> specific cell in a worksheet?
> >> Thank you.
> >>
> >> Jean
> >>
> >>

> >
> >

>
> Thank you for your response.
> This solution is good but I have something as 300 links to do &
> I was thinking more as something as ListBox but without Lisbox (cliking
> directly in WorkSheet(Client) on the name of the client"John" to call a
> code which make a search trough all sheets in the workbook to find the
> Sheet with the same name as the one I clicked on the Sheet(Client).
> Any Idea?
> Thank a lot anyway.
>
> Jean
>

 
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
Jump from cell to new sheet? Don Culp Microsoft Excel Discussion 3 7th Aug 2008 12:15 PM
Excel should allow clicking on a linked cell to jump to source Hayk Microsoft Excel Worksheet Functions 9 10th Dec 2007 01:09 AM
jump to active cell in other sheet . =?Utf-8?B?bW9uZ2tvbGtvcm4=?= Microsoft Excel Misc 12 19th Jun 2007 07:30 PM
Jump to Active cell in other sheet. =?Utf-8?B?bW9uZ2tvbGtvcm4=?= Microsoft Access 1 27th Jan 2006 12:48 PM
macro: jump to cell in next sheet as_sass Microsoft Excel Misc 2 12th May 2004 12:04 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:53 AM.