Hi,
B2 formula: the @ was born as an implicit intersection operator to perform implicit intersections in dynamic arrays;
If you add the @ symbol to the formula, the formula section to the right of the @ will return the following content:
If the value is a single item, it is returned directly;
If the value is a range, the value in the cell on the same row or column of the formula is returned;
If the value is an array, the value in the upper left corner is returned.
F2 formula: INDEX(X,1,1) >> INDEX(array, row_num, [column_num])
- array Required. A range of cells or an array constant.
- If array contains only one row or column, the corresponding row_num or column_num argument is optional.
- If array has more than one row and more than one column, and only row_num or column_num is used, INDEX returns an array of the entire row or column in array.
- row_num Required, unless column_num is present. Selects the row in array from which to return a value. If row_num is omitted, column_num is required.
- column_num Optional. Selects the column in array from which to return a value. If column_num is omitted, row_num is required.
In the F2 formula, you set the Column value, so it returns the column values as result.
So two formulas that return the array as result but not a single value.
Hope the information is helpful.
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.