| View previous topic :: View next topic |
| Author |
Message |
fivefootnine Power User

Joined: 09 Apr 2012 Posts: 60
|
Posted: Fri Jul 20, 2012 11:05 pm Post subject: Formula to only copy cells with values |
|
|
This one might be easy, but I just have´nt the skills to write it myself.
I have this row with numbers, and some empty cells.
'I need a formula to copy only the cells with values.
I know how to do this while sort the numbers in ascending order, but this time i´ll need to do it without affecting their original order.
Please look at the example below
[11][7][ ][13][56][ ] [ ] [14
The needed formula would give me the following row
[11][7][13][56][14]
Thanks for any answer! |
|
| Back to top |
|
 |
ken johnson Super User

Joined: 23 Apr 2009 Posts: 1851 Location: Sydney, Australia
|
Posted: Sat Jul 21, 2012 1:09 am Post subject: |
|
|
You could either use a helper row or an array formula.
Say the original numbers and blanks are in A1:G1 and you want the numbers only in row 7 then this helper formula in A6 filled across to G6 returns an indexing value for the columns with numbers...
| Code: | | =IF(ISNUMBER(A1);COLUMN(A6)-COLUMN($A6)+1;"") |
Then this formula in A7 filled across to G7 returns the numbers in their original order...
| Code: | | =IF(COLUMN(A7)-COLUMN($A6)+1>COUNT($A$1:$G$1);"";INDEX($A$1:$G$1;1;SMALL($A$6:$G$6;COLUMN(A7)-COLUMN($A6)+1))) | See second sheet in attached doc.
If you don't want to use a helper row then this array formula could be used in A7 filled across to G7...
| Code: | | IF(COLUMN(A7)-COLUMN($A7)+1>COUNT($A$1:$G$1);"";INDEX($A$1:$G$1;1;SMALL(IF(ISNUMBER($A$1:$G$1);COLUMN($A$1:$G$1)-MIN(COLUMN($A$1:$G$1))+1;"");COLUMN(A7)-COLUMN($A7)+1))) | Being an array formula it must be entered using Ctrl+Shift +Enter PC key combination. Also, the Ctrl key must be held down while dragging the fill handle as you fill the formula into adjacent cells.
See first sheet in attached doc.
http://www.mediafire.com/view/?ullkghad2l9dni2
Ken Johnson _________________ If your problem has been solved please add "[Solved]" to the beginning of your first post title (edit button).
Last edited by ken johnson on Sun Sep 23, 2012 2:57 am; edited 1 time in total |
|
| Back to top |
|
 |
karolus OOo Advocate

Joined: 22 Jun 2011 Posts: 208
|
Posted: Sat Jul 21, 2012 1:24 am Post subject: |
|
|
Hallo
| Code: | | =INDEX(A1:Z1;SMALL(IF(A1:Z1;COLUMN(A1:Z1);"");COLUMN(A1:Z1))) |
as Matrixformula |
|
| Back to top |
|
 |
Robert Tucker Moderator


Joined: 16 Aug 2004 Posts: 3367 Location: Manchester UK
|
|
| Back to top |
|
 |
fivefootnine Power User

Joined: 09 Apr 2012 Posts: 60
|
Posted: Sat Jul 21, 2012 3:50 am Post subject: |
|
|
Thank you guys! You are the best!!
I´ll see which code that suits my needs the best!! Thank you again!
Problem solved!
Have a nice weekend all of you! |
|
| Back to top |
|
 |
|