![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Join Date: Feb 2002
Location: Los Angeles, CA
Posts: 752
|
I created a macro that ends by creating a subtotal for some data. What I then want is to add a vlookup function for each subtotal "Total" in column L, I want the vlookup in column H. So it will go something like this, =vlookup(L7,GLNumber,2,false). How do I get the formula in column H and have it align right?
Please Help Thanks |
|
|
|
|
|
#2 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
|
What do you mean by this line:
Quote:
|
|
|
|
|
|
|
#3 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 40,651
|
Quote:
What is GLnumber? Apparently you want a lookup formula that must go in H. Right? The picture is not clear (to me). Care to elaborate a bit more? |
|
|
|
|
|
|
#4 |
|
Join Date: Feb 2002
Location: Los Angeles, CA
Posts: 752
|
Sorry if I was not clear I'll try to explain better.
After the macro is done adding subtotals to the data. It summerizes the data by automatically writing total under each different subtotal. This information appears in column N, this is the last column for my spreadsheet. In column H of the subtotal row, I want a vlookup function to lookup column N and return a certain value. Because there is text to the right of this cell I would like it to "align right" so that if the value looked up is big it will not be cut off. What I am tring to do is get a General Ledger Number for each of the subtotals. Please let me know if I need to give more info. Thanks |
|
|
|
|
|
#5 |
|
Join Date: Feb 2002
Location: Los Angeles, CA
Posts: 752
|
This is what I need but I don't know how to do it, if Column L has the word Total add the vlookup formula to Column H.
I know to do these things but not in a macro format. |
|
|
|
|
|
#6 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
|
I think you confused me more, but is this what you want:
activecell.formula="=vlookup(L7,GLNumber,2,false)" and activecell.HorizontalAlignment = xlRight
__________________
Kind regards, Al Chara |
|
|
|
|
|
#7 |
|
Join Date: Feb 2002
Location: Los Angeles, CA
Posts: 752
|
How do I get the macro to add those formulas in column H where column L has the word total?
Thanks |
|
|
|
|
|
#8 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
|
Try the following code:
Code:
For Each cell In Intersect(UsedRange, Columns(12))
If LCase(cell.Value) = "total" Then
With cell.Offset(0, -4)
.Formula = "=vlookup(L7,GLNumber,2,false)"
.HorizontalAlignment = xlRight
End With
End If
Next
Hope this helps. Kind regards, Al. [ This Message was edited by: Al Chara on 2002-04-17 11:40 ] |
|
|
|
|
|
#9 |
|
Join Date: Feb 2002
Location: Los Angeles, CA
Posts: 752
|
It looks good and I added it but I got the following error message run time error '424 object required.
When I clicked on debug the first line of your macro was highlighted in yellow. Also will the vlookup formula change depending on which row it is put on? Thanks for all the help |
|
|
|
|
|
#10 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
|
Try the following code (worked for me):
Code:
Sub RunVlookup()
Dim GLNumber As Range
Set GLNumber = Range("L1: M30")
For Each cell In Intersect(ActiveSheet.UsedRange, ActiveSheet.Columns(12))
If LCase(cell.Value) = "total" Then
With cell.Offset(0, -4)
.Formula = "=Vlookup(" & cell.Address(rowabsolute:=False, columnabsolute:=False) _
& "," & GLNumber.Address & ",2,false)"
.HorizontalAlignment = xlRight
End With
End If
Next
End Sub
__________________
Kind regards, Al Chara |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|