+ Reply to Thread
Results 1 to 6 of 6

Multiple worksheet options

Hybrid View

  1. #1
    Registered User
    Join Date
    06-04-2017
    Location
    Austin, TX
    MS-Off Ver
    2010
    Posts
    21

    Multiple worksheet options

    I have a macro that is current set to look for a specific worksheet, Sheets("Prog Off Core"). I was just told that there could be a few variations of Prog Off.

    Prog Off Core Print
    Prog Off Resource Print
    Prog Off Core Digital
    Prog Off Resource Digital

    Thank you.

    Sub SAP_40_Character_Copy()
    
    Application.ScreenUpdating = False
    
    Dim Drng As Long
    Dim Counter As Integer
    
    Drng = Sheets("Prog Off Core").Cells(Rows.Count, "BC").End(xlUp).Row
    
    
    MsgBox "SAP Description about to populate - Rows 3-" & Drng
    
    'Copy Abbreviation - first row
        Sheets("Abbreviations").Select
        Range("A3:U3").Select
        Application.CutCopyMode = False
        Selection.Copy
        'Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
        
        
    'Paste Abbreviation formulas
        'Sheets("Abbreviations").Select
        Range("A3:U" & Drng).Select
        ActiveSheet.Paste
           
       
    'Copy SAP Desc
        'Sheets("Abbreviations").Select
        Range("A3:A" & Drng).Select
        Application.CutCopyMode = False
        Selection.Copy
        
        Sheets("Prog Off Core").Select
        Range("C3").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
            
            
    Counter = "3"
    
    'Do While Loop ()
        Do While Counter <= Drng
        
        'Language Update
        Sheets("Prog Off Core").Select
        Range("J" & Counter).Select
            ActiveCell.FormulaR1C1 = _
                "=IF(VLOOKUP('Prog Off Core'!RC[11],Options_Fields!C10:C12,3,0)<>"""",VLOOKUP('Prog Off Core'!RC[11],Options_Fields!C10:C12,3,0), IF(OR(Abbreviations!RC[6]="""", Abbreviations!RC[6]=""ENG""),""English"",VLOOKUP(Abbreviations!RC[6],Options_Fields!R2C64:R7C65,2,0)))"
        
        
        Counter = Counter + "1"
        Loop  
        
    End Sub
    Last edited by Pablo_TX; 06-20-2017 at 11:48 AM.

  2. #2
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Multiple worksheet options

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code.

    Posting code between [CODE] [/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Click on Edit to open your thread, then highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here

    (This thread should receive no further responses until this moderation request is fulfilled, as per Forum Rule 7)
    If posting code please use code tags, see here.

  3. #3
    Forum Expert leelnich's Avatar
    Join Date
    03-20-2017
    Location
    Delaware, USA
    MS-Off Ver
    Office 2016
    Posts
    2,807

    Re: Multiple worksheet options

    Hi Pablo - Assuming there's only ONE "Prog Off " sheet in the active workbook, give this a try:
    Code Updated 12:31 pm
    Sub SAP_40_Character_Copy()
    
    Application.ScreenUpdating = False
    
    Dim Drng As Long
    Dim Counter As Integer
    Dim ws As Worksheet
    Dim POCname As String
    
    For Each ws In ActiveWorkbook.Worksheets
        If ws.Name Like "Prog Off *" Then
            POCname = ws.Name
            Exit For
        End If
    Next
    
    Drng = Sheets(POCname).Cells(Rows.Count, "BC").End(xlUp).Row
    
    MsgBox "SAP Description about to populate - Rows 3-" & Drng
    
    With Sheets("Abbreviations")
    'Copy Abbreviation - first row
    .Range("A3:U3").Copy
    .Range("A3:U" & Drng).PasteSpecial xlPasteAll
    'Copy SAP Desc
    .Range("A3:A" & Drng).Copy
    End With
    
    With Sheets(POCname)
    .Range("C3").PasteSpecial Paste:=xlPasteValues
    Application.CutCopyMode = False
    
    Counter = "3"
    
    'Do While Loop ()
    Do While Counter <= Drng
    
    'Language Update
    .Range("J" & Counter).FormulaR1C1 = _
    "=IF(VLOOKUP('" & POCname & "'!RC[11],Options_Fields!C10:C12,3,0)<>"""",VLOOKUP('" & POCname & "'!RC[11],Options_Fields!C10:C12,3,0), IF(OR(Abbreviations!RC[6]="""", Abbreviations!RC[6]=""ENG""),""English"",VLOOKUP(Abbreviations!RC[6],Options_Fields!R2C64:R7C65,2,0)))"
    
    Counter = Counter + "1"
    Loop
    
    End With
    
    End Sub
    Please click the Add Reputation star below any helpful posts, and if you have your answer, mark your thread as SOLVED (Thread Tools up top). Thanks!-Lee
    Last edited by leelnich; 06-20-2017 at 12:39 PM.

  4. #4
    Registered User
    Join Date
    06-04-2017
    Location
    Austin, TX
    MS-Off Ver
    2010
    Posts
    21

    Re: Multiple worksheet options

    Thank you!

  5. #5
    Forum Expert leelnich's Avatar
    Join Date
    03-20-2017
    Location
    Delaware, USA
    MS-Off Ver
    Office 2016
    Posts
    2,807

    Re: Multiple worksheet options

    By the way, I didn't change it, but I'm fairly certain you don't need to loop to insert the formula. This does the same thing:
    If Drng >= 3 Then
    .Range("J3:J" & Drng).FormulaR1C1 = _
    "=IF(VLOOKUP('" & POCname & "'!RC[11],Options_Fields!C10:C12,3,0)<>"""",VLOOKUP('" & POCname & "'!RC[11],Options_Fields!C10:C12,3,0), IF(OR(Abbreviations!RC[6]="""", Abbreviations!RC[6]=""ENG""),""English"",VLOOKUP(Abbreviations!RC[6],Options_Fields!R2C64:R7C65,2,0)))"
    End If

  6. #6
    Forum Expert leelnich's Avatar
    Join Date
    03-20-2017
    Location
    Delaware, USA
    MS-Off Ver
    Office 2016
    Posts
    2,807

    Re: Multiple worksheet options

    Happy to help! If you have your answer, please got to Thread Tools just above your ORIGINAL POST and mark your thread as SOLVED. Thanks!-Lee

    Please click the Add Reputation star below any helpful posts, and if you have your answer, mark your thread as SOLVED (Thread Tools up top). Thanks!-Lee

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 0
    Last Post: 08-26-2014, 08:44 AM
  2. VBA - 1 pivot filter control multiple pivots with multiple field options
    By bwolsky in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-28-2014, 06:19 PM
  3. Searching in a excel sheet with multiple conditions and multiple options
    By punna111 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 04-11-2013, 02:03 PM
  4. Protect worksheet options
    By sivdin in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-19-2011, 03:44 PM
  5. Replies: 5
    Last Post: 03-15-2011, 07:33 PM
  6. [SOLVED] disable tab worksheet options
    By douglasmccormickjr@gmail.com in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-16-2006, 09:35 PM
  7. [SOLVED] Re: disable tab worksheet options
    By Dave Peterson in forum Excel General
    Replies: 0
    Last Post: 07-16-2006, 08:45 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1