Google Sheets – Using CHOOSE with ArrayFormula vs Excel

formulasgoogle sheetsgoogle-sheets-arrayformula

Function CHOOSE within an ArrayFormula seems to yield different results in Google Sheets, compared to Excel. Note how only the first column is shown. Should I report it as a bug, or am I missing something?

Excel:

Excel use

Google Sheets:

Google Sheets use

Best Answer

  • it's not clear what you are after but to mimic Excel behaviour do this:

    =CHOOSE({1;2}, {{11,22,33};{44,55,66}})

    0