Vlookup dependant on current quarter

Godders199

Active Member
Joined
Mar 2, 2017
Messages
313
Office Version
  1. 2013
Hello, i currently have the following vlookup code which works find, however i need to hopefully change it dependant on the Quarter of the calendar year we are in.

With ActiveSheet
LR = .Cells(.Rows.Count, 25).End(xlUp).Row - 1
With .Cells(2, 12).Resize(LR)
.Formula = "=VLOOKUP(a2,'check summary'!$A$1:$s$" & x & ",19,0)"
.Value = .Value
.Replace "#N/A", ""
End With
End With

for example in in Quarters 1 and 3 this vlookup is correct, however in quarters 2 and 4 it would need to look at column 20 not 19.

Is it possible to code this in? or do i need to come up with another solution.
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Use a if statement to test which quarter you are in and if it is 1 or 3 then your formula above else the vlookup with column 20.
 
Upvote 0
sorry, could you help with the code for the test which quarter, i dont know where to start.
 
Upvote 0
Hi

You haven't said what your variable is for Quarter number, but assuming it to be Qno
Qno Mod 2 will return 1 if it is and odd Quarter number, or 0 if it is Even.
So, you could avoid the IF test by calculating a new variable , say QOdd
Qodd= Qno Mod 2
then just make your formula
Code:
[COLOR=#333333].Formula = "=VLOOKUP(a2,'check summary'!$A$1:$s$" & x & ",20 - QOdd,0)"
[/COLOR]
 
Upvote 0
Dear Experts i found in typical vlookup situation. i use vlook up function but i can't use with other functions
please advice me on such lookup sitations

Find ???? Maximum Marks in each Subject of 3 Student
Find ???? Minmum Marks in each Subject of 3 Student
Find ???? Top 3 Students
Find ???? Down 3 Students
Find ???? Less then 33 Marks Students
Find ???? More then 80 Marks Students
Find ???? And a chart to Explain these values

My boss want to low production of employees and higher production.
i don't know how is it possible...


Question are above mention please advice me. How allaborate them.:confused:
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,739
Members
449,050
Latest member
excelknuckles

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