A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Running macro depending on cell value



 
 
Thread Tools Display Modes
  #1  
Old January 28th, 2008, 11:06 PM posted to microsoft.public.excel.worksheet.functions
Esradekan
external usenet poster
 
Posts: 74
Default Running macro depending on cell value

I want to run a macro depending on the cell value, selected from a
drop down box.

Lets say that data to select from is numbers 1 - 20
Lets say I wish to take the person from Sheets 1 - 20 accordingly


How can I do that


TIA


Esra
  #2  
Old January 28th, 2008, 11:27 PM posted to microsoft.public.excel.worksheet.functions
Bob Phillips
external usenet poster
 
Posts: 5,994
Default Running macro depending on cell value

Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "G1" '== change to suit
Dim cell As Range

On Error GoTo ws_exit
Application.EnableEvents = False

If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target
On Error Resume Next
Worksheets("Sheet" & .Value).Activate
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.




--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Esradekan" wrote in message
...
I want to run a macro depending on the cell value, selected from a
drop down box.

Lets say that data to select from is numbers 1 - 20
Lets say I wish to take the person from Sheets 1 - 20 accordingly


How can I do that


TIA


Esra



  #3  
Old January 29th, 2008, 07:03 PM posted to microsoft.public.excel.worksheet.functions
Esradekan
external usenet poster
 
Posts: 74
Default Running macro depending on cell value

On Jan 29, 12:27*pm, "Bob Phillips" wrote:
Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "G1" * * '== change to suit
Dim cell As Range

* * On Error GoTo ws_exit
* * Application.EnableEvents = False

* * If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
* * * * With Target
* * * * * * On Error Resume Next
* * * * * * Worksheets("Sheet" & .Value).Activate
* * * * End With
* * End If

ws_exit:
* * Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Esradekan" wrote in message

...



I want to run a macro depending on the cell value, selected from a
drop down box.


Lets say that data to select from is numbers 1 - 20
Lets say I wish to take the person from Sheets 1 - 20 accordingly


How can I do that


TIA


Esra- Hide quoted text -


- Show quoted text -


I dont understand this, but its ok, I have done it another way.

Thank you for your help. I appreciate it.

Esra
 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:00 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.