XLOOKUP not working correctly in macro

Kekda

New Member
Joined
Sep 6, 2022
Messages
15
Office Version
  1. 2021
Platform
  1. Windows
Hello!
I'm trying to create a table of data on several products which I will be updating with a new column to the right on a monthly basis. See link: sample.xlsx

To make this easier I've tried to record a simple macro which pulls data from another sheet and puts the data in position for me to review. The steps go as follows:

1. Right click table, enter new column to right
2. In the new 'F' column I have created I enter my xlookup formula which pulls data across nicely, for month September
3. Change rounding up/down as necessary
Then I stop recording and after deleting the data just entered, I run the macro and it works nicely, entering everything I just recorded. However when I run it again straightaway, it creates a new column but the xlookup formula is still stuck in the 'F' column, and so it just recopies the data for September on top. What I'm after is an xlookup formula that shifts over to the new column I've created so I have static data for each month lined up in columns.

Hope this makes sense.
Thanks in advance
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
I've tried using 'Use Relative References' but it doesn't work.
Any suggestions appreciated.
 
Upvote 0
Many people are either unwilling or unable to download files from the internet. So to increase your odds of getting an anwer, if might be best to post a section of your workbook here directly. MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.

Also, it would be helpful if you posted the VBA code you recorded/created. See the following link for how to post your VBA code: How to Post Your VBA Code
 
Upvote 0
Hello, thanks for the reply. I'm unable to download XL2BB as a message comes up saying 'This file type is not supported in Protected View' (I'm not in protected view)
 
Upvote 0
It works 🥳 Thanks!

This is the worksheet in question:

sample.xlsx
ABCDEFGH
1STOCK CODEMayJunJulAugCurrentSparkline
2A3900033000290004000040000
3B500500100510510
4C720500490530530
5D850150250330330
Sheet1


VBA Code used:

VBA Code:
Sub monthlyreview()
'
' monthlyreview Macro
'
' Keyboard Shortcut: Ctrl+k
'
    Range("E2").Select
    Selection.ListObject.ListColumns.Add
    Range("F2").Select
    ActiveCell.FormulaR1C1 = _
        "=IFERROR(XLOOKUP([@[STOCK CODE]], 'Data Entry'!C[-5], 'Data Entry'!C[1]), "" "")"
    Range("F3:F1742").Select
    Selection.NumberFormat = "0.0"
    Selection.NumberFormat = "0"
    Range("R1").Select
End Sub

Thanks!
 
Upvote 0
It looks like your formula is referencing a sheet named "Data Entry".
Can you show us what that data looks like?
 
Upvote 0
Yes the data entry sheet is just a sheet which I manually update with data every month.

I use an xlookup formula to pull data from column G
Book1
ABCDEFG
1STOCK CODEPURCHASEOPENCLOSEREF#NO
2A50609276140000
3B41812152510
4C424715.53530
5D15134330
Sheet1
Cell Formulas
RangeFormula
E2:E5E2=IFERROR((C2+D2) / 2, " ")


Hope this helps
 
Upvote 0
Try this:
VBA Code:
Sub monthlyreview()
'
' monthlyreview Macro
'
' Keyboard Shortcut: Ctrl+k

    Dim lc As Long
    
'   Find last column in row 2
    lc = Range("A2").End(xlToRight).Column

'   Insert new column after last column
    Cells(2, lc).ListObject.ListColumns.Add
    Cells(2, lc + 1).FormulaR1C1 = _
        "=IFERROR(XLOOKUP([@[STOCK CODE]], 'Data Entry'!C1, 'Data Entry'!C7), "" "")"
    Range(Cells(2, lc + 1), Cells(1742, lc + 1)).NumberFormat = "0"
    
    Range("R1").Select

End Sub
The key is when using R1C1 notation, you use the square brackets to denote relative position, i.e.
C[-5] means 5 columns to the left of the current column the formula is being placed in.

To do absolute columns, you don't use square brackets, i.e.
C7 means the 7th column (column G).
 
Upvote 0
Solution

Forum statistics

Threads
1,215,113
Messages
6,123,165
Members
449,099
Latest member
afishi0nado

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top