VLOOKUP (or VBA Alternative?) From another workbook, depending on Financial Year

paun_shotts

New Member
Joined
Nov 4, 2021
Messages
41
Office Version
  1. 2013
Platform
  1. Windows
I have a workbook that lists products we sell, and how many of each product we have in stock, on order, on backorder for customers, and how many we have sold of each product on any given month over multiple financial years.

Excel Formula:
=IFNA(VLOOKUP(A20,'Z:\Folder\Info\Company\(Updated Data)\[2024data.xls]Sheet1'!$A$1:$W$1000,3,FALSE),"NF")

I export a report from our system for the current financial year, into this 2024data.xls file.
Then I open the main workbook, and have some VBA code that determines the current financial year, and then it opens that corresponding workbook, which allows the VLOOKUPs to update in the main workbook, then the VBA code closes the 2024data.xls workbook after the values have been updated.

What I want to do is have a dynamic VLOOKUP, or an alternative solution, I have tried the INDIRECT VLOOKUP but that requires the other workbook to be open the whole time. This will NOT work for me.
If the financial year is FY23/24 (I call it 2024 in my workbook, FY24/25 would be called 2025 etc.) Then I want the VLOOKUP to be looking in 2024data.xls, if the financial year is 2025, then VLOOKUP in 2025data.xls etc..

Is there a way to do with NOT using INDIRECT VLOOKUP, possibly with VBA?
If its not possible, would it be possible to prompt the user when they open the main workbook, to select the file to be used for VLOOKUP?
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Ok, I have come up with a separate solution.
Upon opening the workbook, I check the first cell that would contain the VLOOKUP formula, to see if it contains the correct dated data file (2024data.xls for FY 23-24) based on todays date.
If todays date falls between FY24-25 (1/7/2024 - 30/6/2025) then the formulas need to be updated to reference 2025data.xls

Below is the code I used to achieve this solution:
VBA Code:
Private Sub Workbook_Open()
   Dim ws As Worksheet
   Set ws = ThisWorkbook.Sheets("Order") ' Replace with your actual sheet name
   
   Dim currentFYStartYear As Long
   currentFYStartYear = DetermineCurrentFYStartYear()
   
   Dim expectedFileName As String
   expectedFileName = currentFYStartYear & "data.xls"
   
   ' Check the formula in cell D5
   Dim checkCell As Range
   Set checkCell = ws.Range("D5")
  
   If Not InStr(checkCell.Formula, expectedFileName) > 0 Then
       ' Informing the user about the update process
       MsgBox "The workbook formulas need to be updated to reference the correct financial year data file. This process may take 1-2 minutes.", vbInformation
       
       Dim col As Range
       Dim cell As Range
       
       Dim regEx As Object
       Set regEx = New RegExp
       regEx.Global = True
       regEx.IgnoreCase = True
       regEx.Pattern = "\[(\d+)data\.xls\]"
       
       For Each col In ws.Columns("D:G").Columns
           For Each cell In col.Cells
               If cell.HasFormula Then
                   If regEx.Test(cell.Formula) Then
                       Dim matches As MatchCollection
                       Set matches = regEx.Execute(cell.Formula)
                       Dim oldFileName As String
                       oldFileName = matches(0).Value
                       
                       Dim newFormula As String
                       newFormula = Replace(cell.Formula, oldFileName, "[" & expectedFileName & "]")
                       cell.Formula = newFormula
                   End If
               End If
           Next cell
       Next col
       
       MsgBox "Formulas in columns D,E,F & G have been successfully updated to reference " & expectedFileName, vbInformation
   End If
End Sub

Function DetermineCurrentFYStartYear() As Long
   Dim currentYear As Long
   Dim nextYear As Long
   Dim currentMonth As Integer
   Dim currentDay As Integer
   
   currentYear = Year(Date)
   nextYear = currentYear + 1
   currentMonth = Month(Date)
   currentDay = Day(Date)
   
   ' Check if current date is before July 1st
   If currentMonth < 7 Then
       DetermineCurrentFYStartYear = currentYear
   Else
       DetermineCurrentFYStartYear = nextYear
   End If
End Function
 
Upvote 0
Solution

Forum statistics

Threads
1,216,051
Messages
6,128,505
Members
449,455
Latest member
jesski

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