Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I have a master sheet that will have some additional sheets modified at various times. I want to have all my code saved in the master sheet and applied to the other sheets from there. For example: I want to have the following code saved in the "master" sheet but applied to "invoice" sheet. mytext = "ALMFG: AL MFG TAX" For a = 1 To 999 If Cells(a, "c") = mytext Then Cells(a, "m") = Cells(a, "e") Next a mytext = "SHMFG: SHELBY CO MFG TAX" For s = 1 To 999 If Cells(s, "c") = mytext Then Cells(s, "l") = Cells(s, "e") Next s mytext = "PEMFG: PELHAM MFG TAX" For p = 1 To 999 If Cells(p, "c") = mytext Then Cells(p, "j") = Cells(p, "e") Next p mytext = "HEMFG: HELENA MFG TAX" For h = 1 To 999 If Cells(h, "c") = mytext Then Cells(h, "k") = Cells(h, "e") Next h How can I achieve this? Thanks, Met -- Metrazal ------------------------------------------------------------------------ Metrazal's Profile: http://www.excelforum.com/member.php...o&userid=31648 View this thread: http://www.excelforum.com/showthread...hreadid=515726 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Apply to all worksheets | Excel Discussion (Misc queries) | |||
How to apply headings to all worksheets | Excel Discussion (Misc queries) | |||
Won't apply to all worksheets | Setting up and Configuration of Excel | |||
run code on opening workbook and apply code to certain sheets | Excel Programming | |||
How apply one action to all worksheets? | Excel Programming |