...If Worksheet name contains a certain word...

Lenny Enfield

New Member
Joined
Jan 6, 2012
Messages
2
Hello,

I am trying to create a macro to run in a document that contains many sheets. There is one sheet at the beginning, and then subsequent sheets which all have a calendar month in the title.

What I want the macro to do is recognise which 'month' it is in a paste a value into its respective cell on the first sheet.

My macro at the moment is:

Sub Macro1()

Range("D4").Select
Selection.End(xlDown).Select
Selection.Copy
If ActiveSheet.Name = ("IR_25th November 11") Then
Sheets("Sheet1").Select
Range("L3").Select
End If
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False

End Sub

So at the moment when I run macro in the "IR_25th November 11" sheet it copies the piece of data I need into the correct cell on the front page. What I would like it to do is to run just as long the worksheet has the word November in the title. Is this possible?

Please let me know if any clarification is required as I don't think I have explained this very well!
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
I think I'm understanding what you want but perhaps not :)

If you just want to check if November is in the sheet name you could use

If InStr(1, ActiveSheet.Name, "November", vbTextCompare) <> 0 Then

etc

InStr will return the position that the text has been found or zero if it's not found.

Hope this helps
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top