Using the COUNT function to reference added lines

immyjimmy

Active Member
Joined
May 27, 2002
Messages
257
I have a simple workbook that uses a VLOOKUP function.
"=VLOOKUP(F3,A4:B24,2,2)"
As I add data, I have to change the 'B24' to whatever number of rows need to be looked up.
I have another cell (F2) that counts how many rows have data:
"=COUNT(A4:A3000)"
What I'd like to do is have my VLOOKUP function adjust to added lines of data, something like:
=VLOOKUP(F3,A4:B(F2),2,2)
Years ago I remember there being some way of getting the absolute value or referencing or some such, but it's been a long time.
And I know I could name the range, but when I'd add a row in it, I'd have an error in column A with:
=IF(B70="","",A69+1)
Help?
 

Attachments

  • COUNT REFERENCE.png
    COUNT REFERENCE.png
    7.7 KB · Views: 2

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Note that there are easier ways to do it, such as using whole column references in your formula, i.e.
"=VLOOKUP(F3,A:B,2,2)"

Or simply choose a row number that you know you will never exceed, i.e.
"=VLOOKUP(F3,A4:B3000,2,2)"

Also note that if you insert rows into your range, your formula will automatically grow without you having to do anything to do it.
So in your original formula, if you inserted a new row between rows 4:24, this formula:
"=VLOOKUP(F3,A4:B24,2,2)"
will automatically change to this:
"=VLOOKUP(F3,A4:B25,2,2)"
 
Upvote 0
Note that there are easier ways to do it, such as using whole column references in your formula, i.e.
"=VLOOKUP(F3,A:B,2,2)"

Or simply choose a row number that you know you will never exceed, i.e.
"=VLOOKUP(F3,A4:B3000,2,2)"

Also note that if you insert rows into your range, your formula will automatically grow without you having to do anything to do it.
So in your original formula, if you inserted a new row between rows 4:24, this formula:
"=VLOOKUP(F3,A4:B24,2,2)"
will automatically change to this:
"=VLOOKUP(F3,A4:B25,2,2)"
I like easy, but it doesn't work here. If I add a quote, my array doesn't grow with it, which is why I'd like the formula to replace the '69' in my VLOOKUP with the value from my COUNT(+1) function in 'F2'. Also, if I insert a row somewhere inbetween, I lose the continuity of the numbers. I want the vaLue of 'F2' to replace the '69' in my VLOOKUP. I'm doing this for someone who's not overly familiar with Excel, and want it to be as easy (I do like easy) as possible.
 

Attachments

  • Easy doesn't work.png
    Easy doesn't work.png
    60.1 KB · Views: 3
Upvote 0
You have to use the INDIRECT function if you want to build the range dynamically, like this:
=VLOOKUP(F3,INDIRECT("A4:B" & F2),2,2)

By the way, I question what you are doing with the last argument of the function (in red above). "2" isn't really an expected value.
It is expecting a boolean value, i.e. True, False, 0, or 1.
See: Excel VLOOKUP function tutorial with formula examples
 
Upvote 0
Solution

Forum statistics

Threads
1,215,205
Messages
6,123,634
Members
449,109
Latest member
Sebas8956

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