Table formulas not aitofilling correctly

JumboCactuar

Well-known Member
Joined
Nov 16, 2016
Messages
785
Office Version
  1. 365
Platform
  1. Windows
Hi,
I have a table formula which uses a vlookup on the above cells, like:

Code:
=vlookup(F99,$A$2:C98,3,false)

When I resize the table, to example row 500 (default size is 100)

All the rows formulas are correct except row 100 which shows after resizing:

Code:
=vlookup(F99,$A$2:C500,3,false)

Obviously this is messing with calculations as it should only lookup below current row

Any fix to this?

Appreciate any help
 
Last edited:

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Re: Table formulas not autofilling correctly

Code:
ROW99 =vlookup(F99,$A$2:C99,3,false)
ROW100 =vlookup(F100,$A$2:C500,3,false)
ROW101 =vlookup(F101,$A$2:C100,3,false)
 
Upvote 0
Re: Table formulas not autofilling correctly

bump,
its actually just SUMIFS that is the problem


=SUMIFS(A$6:A99,D$6:D99,D99,F$6:F99,$B$1 <--- normal


=SUMIFS(A$6:A500,D$6:D500,D100,F$6:F500,$B$1 <---this is last row of table before i resize it to 500
the 500 are 100 before resizing, i need them to stay 100


=SUMIFS(A$6:A101,D$6:D101,D101,F$6:F101,$B$1 <--- back to normal
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,558
Messages
6,125,507
Members
449,236
Latest member
Afua

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