Microsoft Tech Community - Latest Blogs - Excel Blog

الثلاثاء، 1 أغسطس 2023

Combine ranges with CHOOSE

 


Combine ranges with CHOOSE



Summary

To combine ranges or arrays horizontally, you can use the CHOOSE function with an array constant. In the example shown, the formula in cell G5 is:

=CHOOSE({1,2},B5:B16,D5:D16)

The result is that the range B5:B16 and range D5:D16 are joined together horizontally into a single 

range.




Generic formula

=CHOOSE({1,2},range1,range2)

Explanation 

In this example, the goal is to join two one-dimensional ranges together horizontally. This can be done with the CHOOSE function and array constant.

The CHOOSE function

The CHOOSE function is used to select arbitrary values by numeric position. CHOOSE is a flexible function and accepts a list of text values, numbers, cell references, in any combination. For example, if we have the colors "red", "blue", and "green", we can use CHOOSE like this:

=CHOOSE(1,"red", "blue", "green") // returns "red"
=CHOOSE(2,"red", "blue", "green") // returns "blue"
=CHOOSE(3,"red", "blue", "green") // returns "green"

If we give CHOOSE an array constant like {1,2}, CHOOSE will return the first and second values in an array at the same time:

=CHOOSE({1,2}},"red", "blue", "green") // returns {"red","blue"}

The result is an array that contains two values and, in the dynamic array version of Excel, these values spill onto the worksheet into the range G5:H16.

ليست هناك تعليقات:

إرسال تعليق