Basically I'm joining text but using and concatenate LEFT with it but including a cell that may be blank or not blank but it's not working correctly if the cell is blank
=IF(ISBLANK(G3),UPPER(CONCATENATE(LEFT($F3,1),LEFT($H3,7))),UPPER(CONCATENATE(LEFT($H3,1),$G3,LEFT($F3,6))))
If tried =IF(ISBLANK(G3),UPPER(CONCATENATE(LEFT($H3,1),LEFT($F3,7))),(IF(ISTEXT(G3),UPPER(CONCATENATE(LEFT($H3,1),$G3,LEFT($F4,6))))
=IF(ISTEXT(G3),UPPER(CONCATENATE(LEFT($H3,2),$G3,LEFT($F3,5))),UPPER(CONCATENATE(LEFT($H3,1),LEFT($F3,7))))
Think lastname, first name middle initial - but when I'm wanting to join it to make a username of 8 characters total but use middle initial if there is one but still get 8 characters if there isn't a middle initial. I end up with 7 characters only if no middle initial.
I've tried hidden columns and tried to use if statement for true or false but I'm always ending up with 7 characters when no middle initial K and L have the correct value but still results only 7
=IF(ISBLANK(G3),L3,K3)
=IF(ISBLANK(G3),L3),(IF(ISTEXT(G2),K3))
but doesn't return the value of L3 which is correct for the 8 characters it only gives me 7 yet the formula in that cell gives me the correct but it then gives me only 7.. uuurrrr
but still end up with 7 characters when there is no middle initial uuurrrggggg
I've tried the new TEXTJOIN and CONCAT get same results. I know there is a way to do this, I'm just drawing a blank at this moment.
Driving me crazy.
Bookmarks