Dark0Prince
Active Member
- Joined
- Feb 17, 2016
- Messages
- 433
I have a table of data and when I delete the 5th row the data is replaces from row 6 because it moved up. How can I make sure my referances stay the same instead of showing #REF !
Below is an example of two formulas I've tried.
This one had an issue of adding up every cell it can in that column instead of just the first row. (eg. all first & last names in one cell)
Below is an example of two formulas I've tried.
Code:
=PROPER(IFERROR(INDEX(PIF_REPORT!$H$5,MATCH(PIF_REPORT!$H$4,PIF_REPORT!$H$4,0)),""))&" " & PROPER(PIF_REPORT!$I$5)
This one had an issue of adding up every cell it can in that column instead of just the first row. (eg. all first & last names in one cell)
Code:
=PROPER(CONCAT(Table_Query_from_DEF[First_Name]," ",Table_Query_from_DEF[Last_Name]))