Link to home
Start Free TrialLog in
Avatar of ekaplan323
ekaplan323Flag for United States of America

asked on

Table Formula to automatically fill in when adding a row

I created a lookup formula on a Table.   It is pulling from another table to populate the field.  The formula works fine however, I would like to populate on the next row.  What am I doing wrong.  I have attached a sample file.

=INDEX('Bank Info'!$B$7:$E$10,MATCH([@[Account Number]],TblBankAccount[Acct number],0),4)

Thanks, Eric
Index-Match-in-a-Table.xlsm
Avatar of NBVC
NBVC
Flag of Canada image

Not sure what you mean by
I would like to populate on the next row
.  Can you elaborate?
You can use control-d to copy the formula from the cell above.
Or you could do something like this:

=iferror(INDEX('Bank Info'!$B$7:$E$10,MATCH([@[Account Number]],TblBankAccount[Acct number],0),4),"")

and copy it down to all the cells down to 500 or whatever. It will show blank unless there is a result
ASKER CERTIFIED SOLUTION
Avatar of Rob Henson
Rob Henson
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ekaplan323

ASKER

Rob,

I think this is the issue, can't find the option in Excel 2010 Options Advanced.
Solved the problem