View Single Post
 
Old 07-19-2017, 08:55 AM
buddah buddah is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Jul 2017
Posts: 3
buddah is on a distinguished road
Default

Quote:
Originally Posted by ArviLaanemets View Post
a) Use absolute references for account reference table. P.e. you have on separate sheet Accounts a table with headers Account and NewAccount in A1 and B1, and data filled down to row 600. Now when on some another sheet with account numbers in column A you want to get new account into some other colum on row 2, the formula will be:
=VLOOKUP($A2,Accounts!$A$2:$B$600,2,0)

b) Define all tables as Tables (select any single cell in datarange; Insert>Table; check "My table has headers"; name the defined table). P.e. with table tAccounts defined on sheet Accounts, and calculating new account number in another defined Table with old account in column AccountNo, for any Table row the formula will be:
=VLOOKUP([@AccountNo],tAccounts,2,0).

Both formulas on coping down adjust the reference to old account, but leave the reference to accounts table unchanged.
I was able to define the tables and that works for me. This is a basic solution. Thanks for your help everyone.
Reply With Quote