Table formulas not aitofilling correctly

JumboCactuar

Well-known Member
Joined
Nov 16, 2016
Messages
788
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

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
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,223,909
Messages
6,175,314
Members
452,634
Latest member
cpostell

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