<?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>小棗棧 &#187; excel</title>
	<atom:link href="http://www.joe-ho.com/tag/excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joe-ho.com</link>
	<description>What I called myself is small potato. 一個士麼普爹圖既生活點滴</description>
	<lastBuildDate>Wed, 08 Feb 2012 01:47:56 +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>How to remove the char after specific mark</title>
		<link>http://www.joe-ho.com/how-to-remove-the-char-after-specific-mark/</link>
		<comments>http://www.joe-ho.com/how-to-remove-the-char-after-specific-mark/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 08:22:00 +0000</pubDate>
		<dc:creator>Joe Ho</dc:creator>
				<category><![CDATA[電腦]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.joe-ho.com/?p=4061</guid>
		<description><![CDATA[<p>Recently, I got a tough task about collecting external sources link back to my site. It may be a piece cake to most of the people, but what I&#8217;ve got is a list of URL and an excel.</p> <p>Remove common http pattern</p> <p>As URLs are beginning with http://, so I removed this part by a [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I got a tough task about collecting external sources link back to my site. It may be a piece cake to most of the people, but what I&#8217;ve got is a list of URL and an excel.</p>
<p><strong>Remove common http pattern</strong></p>
<p>As URLs are beginning with http://, so I removed this part by a simple formula:</p>
<blockquote><p>RIGHT(,LEN()-7)   OR   RIGHT(,LEN()-LEN(&#8220;http://&#8221;))</p></blockquote>
<p>Since http:// is 7 characters length, that&#8217;s why len()-7 or len()-len(&#8220;http://&#8221;) both return the remaining number of characters left.</p>
<p><strong>Remove common sub-domain pattern (www)</strong></p>
<p>Another part to trim at the front of the domain name is another common pattern &#8211; www. For those domain name not starting with this pattern, such as blog.joe-ho.com, I&#8217;ll handle it later.</p>
<blockquote><p>IF(LEFT(,4)=&#8221;www.&#8221;,,RIGHT(,LEN()-4))</p></blockquote>
<p>Actually this is similar as the previous step we did, but added an IF condition.</p>
<p>We can combine both simple formula into a complex way, when the domain is starting with &#8220;www&#8221; we take out the first 11 characters (&#8220;http://www.&#8221;), otherwise we just take out http header. The complex formula will be same as below:</p>
<blockquote><p>IF(MID(,8,4)=&#8221;www.&#8221;,RIGHT(LEN(),LEN()-11),RIGHT(LEN(),LEN()-7))</p></blockquote>
<p><strong>Remove remaining after domain name</strong></p>
<p>Next step we will focus on cut out the remaining after domain names. As some URLs are shown detaily which pages linked with our websites, those non-standard URLs still have a same pattern starting with a / mark. Our next mission is removing all the stuffs after that mark, sure we will remove the mark too. We use the following formula to find out where the mark located in cell.</p>
<blockquote><p>LEFT(,FIND(&#8220;/&#8221;,)-1)</p></blockquote>
<p>The FIND forumla is doing a straight forward task, find the location where the text found in a cell. If nothing found, the forumla will return 0. That mean when forumla return more than 0, ie &gt;0, that mean the text is found in cell.</p>
<p>After the FIND forumla, I minus 1 in the result. It is because we need remove the &#8220;/&#8221; mark too. If we didn&#8217;t do so, the final domain name will show as joe-ho.com/ instead of joe-ho.com. Fianlly, we use LEFT forumla to get the most valuable things we needed.</p>
<p>If the text we need happened more than 1 time, we can use SUBTITUTE formula to change the text to a special symbol and use FIND forumla to locate that symbol. Below is the example of the formula, remember we need always specific where the mark we need.</p>
<blockquote><p>LEFT(,FIND(&#8221; &#8220;,SUBSTITUTE(,&#8221;/&#8221;,&#8221; &#8220;,))-1)</p></blockquote>
<p>Hope the above is useful for you. Discusses / comments are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joe-ho.com/how-to-remove-the-char-after-specific-mark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel formula I</title>
		<link>http://www.joe-ho.com/excel-formula-i/</link>
		<comments>http://www.joe-ho.com/excel-formula-i/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 13:55:36 +0000</pubDate>
		<dc:creator>Joe Ho</dc:creator>
				<category><![CDATA[電腦]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.joe-ho.com/?p=1010</guid>
		<description><![CDATA[<p>平時用 MS Access 就用得多, 其中有一個叫 format 既 function 可以將資料用規定特定既格式輸出. 但係有日係 Excel 就唔識用, 仲搞咗好耐. 最後當然俾我搞掂, 就係用 Text() , 例如 =Text(7,&#8221;00&#8243;) 輸出結果為 07</p> <p>下次有機會再同各位研究一下.</p> ]]></description>
			<content:encoded><![CDATA[<p>平時用 MS Access 就用得多, 其中有一個叫 format 既 function 可以將資料用規定特定既格式輸出. 但係有日係 Excel 就唔識用, 仲搞咗好耐. 最後當然俾我搞掂, 就係用 Text() , 例如 =Text(7,&#8221;00&#8243;) 輸出結果為 07</p>
<p>下次有機會再同各位研究一下.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joe-ho.com/excel-formula-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一個好搞笑既 Office 2010 廣告</title>
		<link>http://www.joe-ho.com/%e4%b8%80%e5%80%8b%e5%a5%bd%e6%90%9e%e7%ac%91%e6%97%a2-office-2010-%e5%bb%a3%e5%91%8a/</link>
		<comments>http://www.joe-ho.com/%e4%b8%80%e5%80%8b%e5%a5%bd%e6%90%9e%e7%ac%91%e6%97%a2-office-2010-%e5%bb%a3%e5%91%8a/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 02:36:53 +0000</pubDate>
		<dc:creator>Joe Ho</dc:creator>
				<category><![CDATA[粉梨]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[powerpoint]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://www.joe-ho.com/?p=976</guid>
		<description><![CDATA[<p></p> ]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/VUawhjxLS2I&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/VUawhjxLS2I&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.joe-ho.com/%e4%b8%80%e5%80%8b%e5%a5%bd%e6%90%9e%e7%ac%91%e6%97%a2-office-2010-%e5%bb%a3%e5%91%8a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Insert excel sheet into powerpoint slide</title>
		<link>http://www.joe-ho.com/insert-excel-sheet-into-powerpoint-slide/</link>
		<comments>http://www.joe-ho.com/insert-excel-sheet-into-powerpoint-slide/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 04:41:00 +0000</pubDate>
		<dc:creator>Joe Ho</dc:creator>
				<category><![CDATA[電腦]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[powerpoint]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.joe-ho.com/index.php?/archives/4-guid.html</guid>
		<description><![CDATA[<p>To insert an Excel worksheet</p> Position the cursor at the point where you want to place the worksheet From the Insert menu, click Object Select the Create from file option, and then click Browse Navigate to the folder that contains the worksheet you want to insert In the list of file and folder names, click [...]]]></description>
			<content:encoded><![CDATA[<p>To insert an Excel worksheet</p>
<ol>
<li>Position the cursor at the point where you want to place the worksheet</li>
<li>From the <strong>Insert</strong> menu, click <strong>Object</strong></li>
<li>Select the <strong>Create from file</strong> option, and then click <strong>Browse</strong></li>
<li>Navigate to the folder that contains the worksheet you want to insert</li>
<li>In the list of file and folder names, click the file, and then click <strong>OK</strong> to close the <strong>Browse</strong> dialog box</li>
</ol>
<p>To insert an Excel chart</p>
<ol>
<li>Position the cursor at the point where you want to place the chart</li>
<li>From the <strong>Insert</strong> menu, click <strong>Object</strong></li>
<li>Select the <strong>Create from file</strong> option, and then click <strong>Browse</strong></li>
<li>Navigate to the folder that contains the chart you want to insert</li>
<li>In the list of file and folder names, click the file, and then click <strong>OK</strong> to close the <strong>Browse</strong> dialog box</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.joe-ho.com/insert-excel-sheet-into-powerpoint-slide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel 報表列印加上附註</title>
		<link>http://www.joe-ho.com/excel-%e5%a0%b1%e8%a1%a8%e5%88%97%e5%8d%b0%e5%8a%a0%e4%b8%8a%e9%99%84%e8%a8%bb/</link>
		<comments>http://www.joe-ho.com/excel-%e5%a0%b1%e8%a1%a8%e5%88%97%e5%8d%b0%e5%8a%a0%e4%b8%8a%e9%99%84%e8%a8%bb/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 09:49:00 +0000</pubDate>
		<dc:creator>Joe Ho</dc:creator>
				<category><![CDATA[電腦]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.joe-ho.com/index.php?/archives/87-guid.html</guid>
		<description><![CDATA[<p>先在 File &#8211;&#62; Page Setup. 在 Sheet tab 內將 Comments 設定為 &#8220;As displayed on sheet&#8221;. 之後在 Tools &#8211;&#62; Options 內進入 View tab, 選取 &#8220;Comment and Indicator&#8221; 便可以 printout 內直接列印附註.</p> ]]></description>
			<content:encoded><![CDATA[<p>先在 File &#8211;&gt; Page Setup. 在 Sheet tab 內將 Comments 設定為 &#8220;As displayed on sheet&#8221;. 之後在 Tools &#8211;&gt; Options 內進入 View tab, 選取 &#8220;Comment and Indicator&#8221; 便可以 printout 內直接列印附註.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joe-ho.com/excel-%e5%a0%b1%e8%a1%a8%e5%88%97%e5%8d%b0%e5%8a%a0%e4%b8%8a%e9%99%84%e8%a8%bb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

