What is the formula for unmatched row cell and display in one column as mentioned in the attached work sheet
Worksheet to get Result and Header column values
I am using this formula:
=IFERROR(VLOOKUP(A2,A2:M2,1,FALSE),"")
But it displays only one values in Result column.
Native worksheet formulas simply do not handle string concatenation well. Even the new string functions that are being introduced such as TEXTJOIN function¹ and the updated CONCAT function² have difficulty with conditional concatenation beyond TEXTJOIN's blank/no-blank parameter.
Here are a pair of User Defined Functions (aka UDF) that will perform the tasks.
In P2:Q2 as,
Results:
¹ The TEXTJOIN function is being introduced with Excel 2016 ⁄ Office 365 ⁄ Excel Online. It is not available in earlier versions.
² The new CONCAT function for Excel 2016 ⁄ Office 365 ⁄ Excel Online is intended to replace the older CONCATENATE function with improved functionality.