I'm working on a file to pass to others to fill out. There is a hidden worksheet that references filled out worksheet. I'm using OFFSET to try and minimize errors if entries are moved around the visible worksheet. I need to append text to one cell, but because the worksheet will be uploaded to an application, the rows not used must not have data, formulas are fine. I've tried everything below, and they all return "TEXT". The cell is formatted General, and I've used [Delete] and copied in a known null cell to ensure the reference cell is blank. Here is what I've tried, obviously I'm missing something.
TIA, Ron
Code:
Testing the cell
=LEN(OFFSET(LOGON,2,0,1,1)) ="0"
=COUNTBLANK(OFFSET(LOGON,2,0,1,1)) ="1"
=IF(OFFSET(LOGON,2,0,1,1)="", "", OFFSET(LOGON,2,0,1,1)) &"TEXT"
=IF(ISBLANK(OFFSET(LOGON,2,0,1,1)),"",OFFSET(LOGON,2,0,1,1)) &"TEXT"
=IF(LEN(OFFSET(LOGON,2,0,1,1))<=2, "", OFFSET(LOGON,2,0,1,1)) &"TEXT"
=IF(COUNTBLANK(OFFSET(LOGON,2,0,1,1))=1,"",OFFSET(LOGON,2,0,1,1)) &"TEXT"
TIA, Ron