I have a worksheet that users input employee names and date of birth for various calculations. A few users are deleting rows that are causing #REF errors with the calculations and I am looking for a solution around it. Indirect or Offset are options I am considering to solve the issue.
Here is my data in Column A:
Bobby Jones
Richard Haden
Scott White
Vanessa Anderson
Column H starting at cell 100 I have a calculation to trim the first name:
Jones
Haden
White
Anderson
My question is if a user deletes Richard Haden for example, cell H101 produces a #REF error. How do I add a Indirect or Offset function to the formulas in Column H to eliminate the possibility of REF errors when a row is deleted?
Results I am looking for with the above scenario:
Jones
White
Anderson
Here is my data in Column A:
Bobby Jones
Richard Haden
Scott White
Vanessa Anderson
Column H starting at cell 100 I have a calculation to trim the first name:
Code:
=IFERROR(RIGHT(A1,LEN(A1)-FIND(" ",A1,1)),"")
Jones
Haden
White
Anderson
My question is if a user deletes Richard Haden for example, cell H101 produces a #REF error. How do I add a Indirect or Offset function to the formulas in Column H to eliminate the possibility of REF errors when a row is deleted?
Results I am looking for with the above scenario:
Jones
White
Anderson