Help: selecting part of an array

  • Thread starter Thread starter Philbyinsydney
  • Start date Start date
P

Philbyinsydney

I want to write a function that calls in a whole array and then doe
different things to different parts

Function compress(array)

topleft = array's top left cell ?????


End Function


Thank
 
You might want to consider the functions in the freely downloadable file
at http://home.pacbell.net/beban. The function "SubArray", for example,
takes an array, the new first column, the new last column, the new first
row and the new last row, and returns the specified subarray.

For the top left cell, for example, =SubArray(myArray,1,1,1,1), although
myArray(1,1) is obviously more sensible for such a simple case.

Ala Beban
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top