
Originally Posted by
pb71
Using your existing named ranges, you could use Data Validation lists. When cell E4 has a value, there will be only one option in the Data Validation list in cell F4 and vice versa. You would have to select the value to populate the cell.
Cell E4 on Expenditure worksheet. Source:
=IF($F$4="",GL_Account_Code,INDEX(GL_Account_Code,MATCH(F4,GL_Account_Description,0)))
Cell F4 on Expenditure worksheet. Source:
=IF($E$4="",GL_Account_Description,INDEX(GL_Account_Description,MATCH(E4,GL_Account_Code,0)))
VBA is another option.
Bookmarks