<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Excel: Remove blank cells</title> <atom:link href="http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/feed/" rel="self" type="application/rss+xml" /><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/</link> <description>Quality excel resource</description> <lastBuildDate>Thu, 09 Feb 2012 20:47:33 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Ted</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-44560</link> <dc:creator>Ted</dc:creator> <pubDate>Fri, 20 Jan 2012 23:21:16 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-44560</guid> <description>Thank you SO MUCH for this!!!!!!!!!! I&#039;ve been trying to write if statements for the last 2 days to try to filter out unneeded data.  I just converted the garbage to blank cells then used your equation..... ITS Beautiful!!!!!!!
Thanks so much!!!</description> <content:encoded><![CDATA[<p>Thank you SO MUCH for this!!!!!!!!!! I've been trying to write if statements for the last 2 days to try to filter out unneeded data.  I just converted the garbage to blank cells then used your equation..... ITS Beautiful!!!!!!!</p><p>Thanks so much!!!</p> ]]></content:encoded> </item> <item><title>By: June</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-43497</link> <dc:creator>June</dc:creator> <pubDate>Thu, 12 Jan 2012 21:54:02 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-43497</guid> <description>Oscar,
Thank you sooo much~!The formula removes cells that seem to be blank but contains a space character solve all my problems~!</description> <content:encoded><![CDATA[<p>Oscar,</p><p>Thank you sooo much~!The formula removes cells that seem to be blank but contains a space character solve all my problems~!</p> ]]></content:encoded> </item> <item><title>By: Create a list with no blank cells &#124; Online Excel Courses</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-42223</link> <dc:creator>Create a list with no blank cells &#124; Online Excel Courses</dc:creator> <pubDate>Sat, 31 Dec 2011 05:11:08 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-42223</guid> <description>[...] how it can be done using formulas. One of them that explained how it can done can be found a http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/ modified the formula to do it for columns. Thennbsp;I setup the formulanbsp;such thatnbsp;he [...]</description> <content:encoded><![CDATA[<p>[...] how it can be done using formulas. One of them that explained how it can done can be found a <a
href="http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/" rel="nofollow">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/</a> modified the formula to do it for columns. Thennbsp;I setup the formulanbsp;such thatnbsp;he [...]</p> ]]></content:encoded> </item> <item><title>By: Oscar</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-36243</link> <dc:creator>Oscar</dc:creator> <pubDate>Tue, 25 Oct 2011 08:26:10 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-36243</guid> <description>Marcol,
Yes you are right. ISERROR($B$2:$B$200) removes formulas that return an error.</description> <content:encoded><![CDATA[<p>Marcol,</p><p>Yes you are right. ISERROR($B$2:$B$200) removes formulas that return an error.</p> ]]></content:encoded> </item> <item><title>By: Marcol</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-36147</link> <dc:creator>Marcol</dc:creator> <pubDate>Sun, 23 Oct 2011 09:43:40 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-36147</guid> <description>Great to see a non-volatile solution to this problem.
If the apparently empty cell is &quot;&quot; returned by a formula then the &quot;blanks&quot; will not be removed,in fact as they are all read as different &quot;blanks&quot; and the list can/will remain unchanged.
This mod seems to handle this situation.
=INDEX($B$2:$B$200, SMALL(IF(($B$2:$B$200=&quot;&quot;)+ISERROR($B$2:$B$200), &quot;&quot;, ROW($B$2:$B$200)-MIN(ROW($B$2:$B$200))+1), ROW(1:1)))
Wrap in IFERROR(&quot;formula&quot;,&quot;&quot;) for 2007 and above, or IF(ISERROR(&quot;formula&quot;),&quot;&quot;,&quot;formula&quot;) for 2003 and earlier.</description> <content:encoded><![CDATA[<p>Great to see a non-volatile solution to this problem.</p><p>If the apparently empty cell is "" returned by a formula then the "blanks" will not be removed,in fact as they are all read as different "blanks" and the list can/will remain unchanged.<br
/> This mod seems to handle this situation.</p><p>=INDEX($B$2:$B$200, SMALL(IF(($B$2:$B$200="")+ISERROR($B$2:$B$200), "", ROW($B$2:$B$200)-MIN(ROW($B$2:$B$200))+1), ROW(1:1)))</p><p>Wrap in IFERROR("formula","") for 2007 and above, or IF(ISERROR("formula"),"","formula") for 2003 and earlier.</p> ]]></content:encoded> </item> <item><title>By: Mike</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-33663</link> <dc:creator>Mike</dc:creator> <pubDate>Mon, 19 Sep 2011 05:31:46 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-33663</guid> <description>Sorry - I found a work around using your current formulas above, glad I found it!  Going to take some doing to set it up but it will be worth it.
Thanks!</description> <content:encoded><![CDATA[<p>Sorry - I found a work around using your current formulas above, glad I found it!  Going to take some doing to set it up but it will be worth it.</p><p>Thanks!</p> ]]></content:encoded> </item> <item><title>By: Mike</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-33649</link> <dc:creator>Mike</dc:creator> <pubDate>Mon, 19 Sep 2011 03:31:44 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-33649</guid> <description>Basically I&#039;m looking to do the same thing the filter does but what I want to end up with is a single sheet that has 10 of these filterd lists above and next to each other.</description> <content:encoded><![CDATA[<p>Basically I'm looking to do the same thing the filter does but what I want to end up with is a single sheet that has 10 of these filterd lists above and next to each other.</p> ]]></content:encoded> </item> <item><title>By: Mike</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-33648</link> <dc:creator>Mike</dc:creator> <pubDate>Mon, 19 Sep 2011 03:24:42 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-33648</guid> <description>Well that doesn&#039;t look pretty how about this:
CURRENT TRYING TO DO WOULD BE IDEAL
--A--------B-----------A--------B-----------A--------B
Name 1...Data 1------Name 1...Data 1------Name 1...Data 1
Name 2...______------Name 3...Data 2------Name 4...Data 1
Name 3...Data 2------Name 4...Data 1
Name 4...Data 1------Name 6...Data 3
Name 5...______
Name 6...Data 3</description> <content:encoded><![CDATA[<p>Well that doesn't look pretty how about this:</p><p>CURRENT TRYING TO DO WOULD BE IDEAL<br
/> --A--------B-----------A--------B-----------A--------B<br
/> Name 1...Data 1------Name 1...Data 1------Name 1...Data 1<br
/> Name 2...______------Name 3...Data 2------Name 4...Data 1<br
/> Name 3...Data 2------Name 4...Data 1<br
/> Name 4...Data 1------Name 6...Data 3<br
/> Name 5...______<br
/> Name 6...Data 3</p> ]]></content:encoded> </item> <item><title>By: Mike</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-33645</link> <dc:creator>Mike</dc:creator> <pubDate>Mon, 19 Sep 2011 03:07:01 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-33645</guid> <description>Wondering if you can help.
Easiest to put an example down:
CURRENT              TRYING TO DO           WOULD BE IDEAL
A           B        A            B         A           B
Name 1    Data 1     Name 1     Data 1      Name 1      Data 1
Name 2               Name 3     Data 2      Name 4      Data 1
Name 3    Data 2     Name 4     Data 1
Name 4    Data 1     Name 6     Data 3
Name 5
Name 6    Data 3
Where the name stays matched up with the data item in the same row.  I would think using hlookup or vlookup in some fashion might help but I can&#039;t wrap my brain around it.  Any thoughts?</description> <content:encoded><![CDATA[<p>Wondering if you can help.</p><p>Easiest to put an example down:</p><p>CURRENT              TRYING TO DO           WOULD BE IDEAL<br
/> A           B        A            B         A           B<br
/> Name 1    Data 1     Name 1     Data 1      Name 1      Data 1<br
/> Name 2               Name 3     Data 2      Name 4      Data 1<br
/> Name 3    Data 2     Name 4     Data 1<br
/> Name 4    Data 1     Name 6     Data 3<br
/> Name 5<br
/> Name 6    Data 3</p><p>Where the name stays matched up with the data item in the same row.  I would think using hlookup or vlookup in some fashion might help but I can't wrap my brain around it.  Any thoughts?</p> ]]></content:encoded> </item> <item><title>By: Oscar</title><link>http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/comment-page-1/#comment-29348</link> <dc:creator>Oscar</dc:creator> <pubDate>Thu, 21 Jul 2011 17:03:27 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/2007/09/16/excel-remove-blank-cells/#comment-29348</guid> <description>JOshua,
I am not sure what is wrong.
&lt;div id=&quot;code1&quot;&gt;=INDEX($B$3:$B$10, SMALL(IF(ISBLANK($B$3:$B$10), &quot;&quot;, ROW($B$3:$B$10)-MIN(ROW($B$3:$B$10))+1), ROW(&lt;strong&gt;A1&lt;/strong&gt;)))&lt;/div&gt;
$B$3:$B$10 is the cell range. Adjust range to your sheet.
A1 (bolded) is a relative cell reference. This cell reference changes when you copy the formula.
Yes, you can also copy the formula by click and hold and drag the cell down to the last cell you need.
&lt;img src=&quot;http://www.get-digital-help.com/wp-content/uploads/2007/09/copy-formula.png&quot; alt=&quot;copy array formula&quot; /&gt;</description> <content:encoded><![CDATA[<p>JOshua,</p><p>I am not sure what is wrong.</p><div
id="code1">=INDEX($B$3:$B$10, SMALL(IF(ISBLANK($B$3:$B$10), "", ROW($B$3:$B$10)-MIN(ROW($B$3:$B$10))+1), ROW(<strong>A1</strong>)))</div><p>$B$3:$B$10 is the cell range. Adjust range to your sheet.</p><p>A1 (bolded) is a relative cell reference. This cell reference changes when you copy the formula.</p><p>Yes, you can also copy the formula by click and hold and drag the cell down to the last cell you need.</p><p><img
src="http://cdn.get-digital-help.com/wp-content/uploads/2007/09/copy-formula.png" alt="copy array formula" /></p> ]]></content:encoded> </item> </channel> </rss>
