<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Notes &#187; excel</title>
	<atom:link href="http://alexpb.com/notes/articles/category/excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexpb.com/notes</link>
	<description></description>
	<lastBuildDate>Tue, 27 Dec 2011 13:04:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Build thread: submicro brushless motors</title>
		<link>http://alexpb.com/notes/articles/2011/07/09/build-thread-submicro-brushless-motors-2/</link>
		<comments>http://alexpb.com/notes/articles/2011/07/09/build-thread-submicro-brushless-motors-2/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 14:20:56 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[encryption]]></category>
		<category><![CDATA[excel]]></category>

		<guid isPermaLink="false">http://alexpb.com/notes/?p=1078</guid>
		<description><![CDATA[Build thread: submicro brushless motors.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.westknoxrc.com/index.php/topic,625.0.html?PHPSESSID=90916e4f4a47a60ac2996f80c13c05d4">Build thread: submicro brushless motors</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexpb.com/notes/articles/2011/07/09/build-thread-submicro-brushless-motors-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Tables In HTML</title>
		<link>http://alexpb.com/notes/articles/2010/10/18/using-tables-in-html/</link>
		<comments>http://alexpb.com/notes/articles/2010/10/18/using-tables-in-html/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 23:44:56 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[excel]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://alexpb.com/notes/?p=906</guid>
		<description><![CDATA[Although you should not use tables for layouts (CSS should be used for this purpose), you should definitely use tables if you need to display tabular data (Excel file data, database data or CSV file for example). Concrete example: Mon Tue Wed Thu Fri 8:00-9:00 Meet Sam 9:00-10:00 Dr Williams Sam again Leave for CA]]></description>
			<content:encoded><![CDATA[<p>Although you should not use tables for <a href="http://webdesign.about.com/od/layout/a/aa111102a.htm">layouts</a> (<a href="http://www.w3.org/2002/03/csslayout-howto">CSS should be used for this purpose</a>), you should definitely use tables if you need to display <a href="http://webdesign.about.com/od/tables/a/aa122605.htm">tabular data</a> (Excel file data, database data or CSV file for example).</p>
<p>Concrete example:</p>
<table border=1>
<tr>
<td> </td>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
</tr>
<tr>
<th>8:00-9:00</th>
<td>Meet Sam</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>9:00-10:00</th>
<td> </td>
<td> </td>
<td>Dr Williams</td>
<td>Sam again</td>
<td>Leave for CA</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://alexpb.com/notes/articles/2010/10/18/using-tables-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Deletes Leading 0s When Opening a CSV File</title>
		<link>http://alexpb.com/notes/articles/2010/07/01/excel-deletes-leading-0s-when-opening-a-csv-file/</link>
		<comments>http://alexpb.com/notes/articles/2010/07/01/excel-deletes-leading-0s-when-opening-a-csv-file/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 21:43:30 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[excel]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[zero]]></category>

		<guid isPermaLink="false">http://alexpb.com/notes/?p=746</guid>
		<description><![CDATA[If you want Excel to keep a field&#8217;s leading zeros when opening a CSV file using Excel, you can change it to =&#8221;value&#8221;. For example, if you have a row with 4 values that looks like this: Just change it to:]]></description>
			<content:encoded><![CDATA[<p>If you want Excel to keep a field&#8217;s leading zeros when opening a CSV file using Excel, you can change it to =&#8221;value&#8221;.</p>
<p>For example, if you have a row with 4 values that looks like this:</p>
<pre class="brush: plain; title: ; notranslate">test,00016102,test,test</pre>
<p></p>
<p>Just change it to:</p>
<pre class="brush: plain; title: ; notranslate">test,=&quot;00016102&quot;,test,test</pre>
]]></content:encoded>
			<wfw:commentRss>http://alexpb.com/notes/articles/2010/07/01/excel-deletes-leading-0s-when-opening-a-csv-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

