+ Reply to Thread
Results 1 to 21 of 21

Datatable Excel 2003

Hybrid View

  1. #1
    Registered User
    Join Date
    05-16-2010
    Location
    Canada
    MS-Off Ver
    Excel 2003
    Posts
    15

    Datatable Excel 2003

    Hi everyone, not sure if this is going to be laughed at or not, I spent a while today trying to get this correct. I have a data table, the rows are fixed. The columns are constantly changing, and I would like my rows to get to that point as well soon enough.

    I am currently using If then else statements which pick which cell to use for the column input. When I move to 10 or so variables on either side that seems like too much work to code all 100 if statements. I want to have 2 lookups, that will have the cell reference ie "J6" based upon which 2 variables I want to use for this table displayed in the cell. That vlookup is in cell AG32 for the columns. How do I put this as the column. I tried and all I got was error messages.

    Table.Selection. RowInput:= range.(AJ9) ColumnInput:= range.("AG32") does not return what I want normally...any suggestions, obviously this forum really helps people and I greatly appreicate the effort people make.
    Last edited by elduderino65; 02-12-2011 at 05:09 PM.

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Datatable Excel 2003 VBA

    I can't understand why the columns should not be fixed in number. A bit better explanation is required & an example workbook would help
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Registered User
    Join Date
    05-16-2010
    Location
    Canada
    MS-Off Ver
    Excel 2003
    Posts
    15

    Re: Datatable Excel 2003 VBA

    Ok so in the example below, where it says column input, I just want to be able to reference a cell, or just use the text from another cell as my column (and possibly row)input. Doesn't seem to want to let me.



     If Range("AJ30").Value = "Sally" Then
                    Range("AK27:AQ35").Select
                    Selection.Table RowInput:=Range("AJ8"), ColumnInput:=Range("AJ9")
                    Else
                    If Range("AJ30").Value = "Jane" Then
                    Range("AK27:AQ35").Select
                    Selection.Table RowInput:=Range("AJ8"), ColumnInput:=Range("AJ10")
                    Else
                    If Range("AJ30").Value = "Betty" Then
                    Range("AK27:AQ35").Select
                    Selection.Table RowInput:=Range("AJ8"), ColumnInput:=Range("AJ11")
                    Else
                    If Range("AJ30").Value = "Suzie"Then
                    Range("AK27:AQ35").Select
                    Selection.Table RowInput:=Range("AJ8"), ColumnInput:=Range("AJ12")
                    Else
                    If Range("AJ30").Value = "Tammy"Then
                    Range("AK27:AQ35").Select
                    Selection.Table RowInput:=Range("AJ8"), ColumnInput:=Range("AJ13")
                    End If
                    End If
                    End If
                    End If
                    End If
    Last edited by elduderino65; 02-11-2011 at 08:26 AM.

  4. #4
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Datatable Excel 2003 VBA

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code. Posting code without them makes your code hard to read and difficult to be copied for testing. Highlight your code and click the # at the top of your post window. For more information about these and other tags, found here

  5. #5
    Registered User
    Join Date
    05-16-2010
    Location
    Canada
    MS-Off Ver
    Excel 2003
    Posts
    15

    Re: Datatable Excel 2003 VBA

    I will upload a sample sheet later tonight.

  6. #6
    Registered User
    Join Date
    05-16-2010
    Location
    Canada
    MS-Off Ver
    Excel 2003
    Posts
    15

    Thumbs down Re: Datatable Excel 2003 VBA

    Ok so here is the sheet, essentially I do not want a million different if statements, I figured the people on here would know rather than me have 100 or so combinations to code. There are notes in the Macro, but L4 and M4 would be the idea place for the column and row references to be pulled from.

    Thanks a million
    Attached Files Attached Files
    Last edited by elduderino65; 02-12-2011 at 02:02 PM.

  7. #7
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Datatable Excel 2003 VBA

    If each row is associated with a name, and each column is associated with a name, why not just list the names across the top of the table and down the left side, and use a pair of simple MATCH formulas?
    Entia non sunt multiplicanda sine necessitate

  8. #8
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Datatable Excel 2003 VBA

    Or ...
    Sub Test()
        Dim iCol As Long
    
        Range("O4:V11").ClearContents
        iCol = Application.Match(Range("L3").Value, Array("Betty", "Sally", "Jane", "Tammy", "Suzie"), 0)
        Range("N3:V11").Table RowInput:=Range("C4"), _
                              ColumnInput:=Range("C1").Offset(iCol)
        Calculate
    End Sub
    BTW, you have a trailing space in Sally's name that you should fix.
    Last edited by shg; 02-12-2011 at 02:16 PM.

  9. #9
    Registered User
    Join Date
    05-16-2010
    Location
    Canada
    MS-Off Ver
    Excel 2003
    Posts
    15

    Re: Datatable Excel 2003 VBA

    Quote Originally Posted by shg View Post
    If each row is associated with a name, and each column is associated with a name, why not just list the names across the top of the table and down the left side, and use a pair of simple MATCH formulas?
    I was refering to this, thanks

  10. #10
    Registered User
    Join Date
    05-16-2010
    Location
    Canada
    MS-Off Ver
    Excel 2003
    Posts
    15

    re: Datatable Excel 2003 VBA

    alright, thank you for all of your help.

  11. #11
    Registered User
    Join Date
    05-16-2010
    Location
    Canada
    MS-Off Ver
    Excel 2003
    Posts
    15

    Re: Datatable Excel 2003

    Any idea how to bring the table to another sheet and still have it work, using the previous code?
    If not no problem
    thanks

    Scott

  12. #12
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Datatable Excel 2003

    I don't understand the question -- just change the references for the table location and the row and column references.

  13. #13
    Registered User
    Join Date
    05-16-2010
    Location
    Canada
    MS-Off Ver
    Excel 2003
    Posts
    15

    Re: Datatable Excel 2003

    I just realized what I was asking was impossible, my mistake.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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