Hello Otto, there probably is a simpler way to do what I'm trying to do. In
a nutshell, I have a spreadsheet where if a certain word (room area) is
entered into one cell/column (eg L10) then the corresponding code needs to be
entered alongside it, (eg K10). Unfortunately we already have thousands of
entries in column L so rather than manually inputting a code into each
corresponding cell in column K I thought I'd put in an if formula similar to
the following as this would also prevent the user from inputting the
incorrect information in column K if they were doing it manually.
This is the formula I started inputting into column K : =IF(L10='Validation
Lists'!E2,'Validation Lists'!D2,(IF(L10='Validation Lists'!E3,'Validation
Lists'!D3,(IF(L10='Validation Lists'!E4,'Validation
Lists'!D4,(IF(L10='Validation Lists'!E5,'Validation
Lists'!D5,(IF(L10='Validation Lists'!E6,'Validation
Lists'!D6,(IF(L10='Validation Lists'!E7,'Validation
Lists'!D7,(IF(L10='Validation Lists'!E8,'Validation
Lists'!D8,(IF(L10='Validation Lists'!E9,'Validation
Lists'!D9,"")))))))))))))))
I was hoping I could just carry on putting in the If arguments until I'd
mentioned all 20 odd room and their corresponding code number, obviously not.
Any ideas?