SkywardPalm
Board Regular
- Joined
- Oct 23, 2021
- Messages
- 61
- Office Version
- 365
- Platform
- Windows
I am attempting to pull the categories that names are found in, and have it working all but for blank/missing names.
The cell "A1" is blank, and I am trying to pull the results (first 4 left characters from Column A of Master sheet) for an exact blank match (names to find are in Column C of Master sheet). I tried TEXTJOIN with an IF(ISBLANK) but couldn't get the syntax figured out. The way I have it written currently, it pulls in four different sections along with the header, when there are only blanks in a single category.
Excel Formula:
=TEXTJOIN(", ",TRUE,UNIQUE(IF(ISNUMBER(SEARCH(A1,'Master'!C:C)),LEFT('Master'!A:A,4),"")))
The cell "A1" is blank, and I am trying to pull the results (first 4 left characters from Column A of Master sheet) for an exact blank match (names to find are in Column C of Master sheet). I tried TEXTJOIN with an IF(ISBLANK) but couldn't get the syntax figured out. The way I have it written currently, it pulls in four different sections along with the header, when there are only blanks in a single category.