I have a 2 sheets
Sheet1 and Sheet2
I want to join the columns based on their #LP values. Which I am successful using the formula
=ArrayFormula(IFERROR(
{
Sheet1!A1:G,
vlookup(Sheet1!A1:A, {Sheet2!A1:A, Sheet2!B1:H}, {2,3,4}, false)
},"")
)
I also want to skip the columns in result if the row names dynamically detrmining that wont begin with $ symbol.
The expected columns are shown in Green color as shown in the LP_QUERY1 sheet.