+ Reply to Thread
Results 1 to 2 of 2

How to name multiple variables?

  1. #1
    Registered User
    Join Date
    07-09-2015
    Location
    United States
    MS-Off Ver
    2013
    Posts
    52

    How to name multiple variables?

    Thanks for any and all help in advance. It is greatly appreciated. Here is the code I have so far:
    Sub PAASurgeons()
    '
    ' PAASurgeons Macro
    '
    Sheets("Surgeons").Select
    Dim LastRow As Long
    LastRow = Cells(Cells.Rows.Count, "A").End(xlUp).row
    '


    Range("E1").Select
    ActiveCell.FormulaR1C1 = "=TEXT(RC[-1],""00000000"")"
    Range("E1").Select
    Selection.AutoFill Destination:=Range("E1:E" & LastRow)
    Range("E1:E" & LastRow).Select
    Selection.Copy
    Range("D1").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
    :=False, Transpose:=False
    ' Columns("E:E").Select
    ' Application.CutCopyMode = False
    ' Selection.ClearContents
    Range("A1").Select
    Sheets("Schedule").Select
    Dim Travis As Long
    LastRow = Cells(Cells.Rows.Count, "A").End(xlUp).row
    Range("L1").Select
    With Selection
    .HorizontalAlignment = xlGeneral
    .VerticalAlignment = xlBottom
    .WrapText = False
    .Orientation = 0
    .AddIndent = False
    .ShrinkToFit = False
    .ReadingOrder = xlContext
    .MergeCells = False
    End With
    ActiveCell.FormulaR1C1 = "Surgeons"
    Range("L2").Select
    ActiveCell.FormulaR1C1 = "=VLOOKUP(RC[-9],Surgeons!C[-7]:C[3],11,FALSE)"
    Range("L2").Select
    Selection.AutoFill Destination:=Range("L2:L" & Travis)
    Range("L2:L" & Travis).Select
    Range("A1").Select
    End Sub

    As you can tell I'm trying to have two variables (LastRow and Travis). The reason why is that the numbers of rows differ on the two sheets. So I need it to count how many there are on the surgeons sheet and have that as a variable and how many there are on the Schedule sheet as well.

    THanks,

  2. #2
    Valued Forum Contributor
    Join Date
    05-14-2012
    Location
    Unknown
    MS-Off Ver
    Unseen
    Posts
    429

    Re: How to name multiple variables?

    Please Login or Register  to view this content.

+ 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. [SOLVED] Autofilter to delete multiple rows with multiple variables
    By Ravana in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 03-10-2015, 12:01 AM
  2. Excel Vlookup, multiple sheets and multiple variables
    By caninekopz in forum Excel General
    Replies: 3
    Last Post: 11-27-2013, 10:33 AM
  3. Replies: 1
    Last Post: 07-16-2013, 01:54 AM
  4. [SOLVED] INDEX/MATCH Multiple Worsheets Multiple Variables
    By Jadvancing in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-28-2013, 06:42 PM
  5. Variables to multiple cells on multiple sheets
    By BoBoCoDeR in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-06-2012, 05:02 PM
  6. Multiple variables:bunch of variables
    By sbq80 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 10-19-2009, 04:22 PM
  7. Replies: 9
    Last Post: 02-16-2009, 12:46 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