Use of Take Formula.

Take formula is used for data retrieval by given rows and columns that’s we want to take.

In other words, Return a specified numbers of contiguous rows and columns from the start or end of the array.

Syntax.

=TAKE(array, rows,[columns])

The TAKE function syntax has the following arguments:

  • array:   The array from which to take rows or columns.
  • rows:    The number of rows to take. A negative value takes from the end of the array.
  • columns:  The number of columns to take. A negative value takes from the end of the array.

Errors.

  • Excel returns a #CALC! error to indicate an empty array when either rows or columns is 0.
  • Excel returns a #NUM when array is too large.

Let’s see an Example 1.

Here we have some data in Excel. You can download it from CLICK HERE

Returns the first three rows from the array in range A1:E10.

Formulas.

=TAKE(A1:E10,3) like see in the figure.

Result is…..

Example 2:

Returns the first three columns from the array in range A1:E10.

Formulas.

=TAKE(A1:E10,,3) and result will be there like in the figure.

Example 3:

Returns the last three rows from the array in range A1:E10.

Formulas.

=TAKE(A1:E10,-3) and result will be there like in the figure.

Example 4:

Returns the last three columns from the array in range A1:E10.

Formulas.

=TAKE(A1:E10,,-3) and result will be there like in the figure.

Example 5:

Returns the first three rows and first two columns from the array in range A1:E10.

Formulas.

=TAKE(A1:E10,3,2) and result will be there like in the figure.

nikasoftware.com

Share
Published by
nikasoftware.com

Recent Posts

Divide Function in Power BI

पावर बीआई (Power BI) में DIVIDE फ़ंक्शन क्या है? बिल्कुल आसान भाषा में समझें नमस्कार…

1 day ago

Google Sheets Direct Download (Secret Trick)

नमस्ते दोस्तों! nikasoftware.com पर आपका स्वागत है। अगर आप डेटा और स्प्रेडशीट्स के साथ काम…

4 days ago

Filter Formula in Excel

Excel में FILTER Function क्या है? (बिल्कुल आसान भाषा में सीखें) आजकल डेटा के साथ…

5 days ago

Connect OneDrive to MS-Excel / Power BI

Are you want Connect online OneDrive to MS-Excel / Power Bi for your data as…

3 years ago

Get Excel File Location

How to find excel file location that is currently open, or you forget the file…

3 years ago

DGET Function in EXCEL.

Excel's DGET function is used to locate specific information in a table or database. It…

3 years ago