<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CUYGSX0zeyp7ImA9WhRaFEg.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284</id><updated>2012-02-16T20:32:08.383-08:00</updated><category term="電腦教學" /><category term="生活資訊" /><category term="看過的書" /><category term="電腦資訊" /><category term="旅遊資訊" /><category term="益智問題" /><category term="軟體工具" /><category term="講義資料" /><category term="講義資料" /><category term="趣味話題" /><category term="智慧小語" /><category term="心情寫真" /><category term="免費資源" /><category term="視覺圖片" /><title>施老師的學習空間</title><subtitle type="html">勉強成自然，自然成習慣。&lt;br&gt;
(Windows, Excel, Word, PowerPoint 等電腦教學)</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://isstudent.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>shih wenhsien</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-UYnG7N088io/AAAAAAAAAAI/AAAAAAAAHqk/mBhAOXQv8s8/s512-c/photo.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>1298</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspotisstudent" /><feedburner:info uri="blogspotisstudent" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>blogspotisstudent</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry gd:etag="W/&quot;CUYGSXo7fip7ImA9WhRaFEg.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-3195918698825690874</id><published>2012-02-16T20:32:00.001-08:00</published><updated>2012-02-16T20:32:08.406-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-16T20:32:08.406-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-依日期先後摘要</title><content type="html">&lt;p&gt;在 Excel 中有一個資料表(如下圖左)，如果要依日期先要來摘要(如下圖右)，該如何處理？&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【準備工作】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;選取儲存格A1:B23，按一下 Ctrl+Shift+F3 鍵，勾選「頂端列」，定義名稱：姓名、日期。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-fOQyvXYoAwA/Tz3YR0lYCgI/AAAAAAAANsg/WdPXTtSL_nY/image%25255B7%25255D.png?imgmax=800" width="619" height="583"&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【做法】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;儲存格E2：={IFERROR(SMALL(IF(姓名=$D2,日期),COLUMN(A:A)),"")}&lt;/p&gt; &lt;p&gt;這是陣列公式，輸入完成請按&lt;strong&gt;&lt;em&gt; Ctrl+Shift+Enter &lt;/em&gt;&lt;/strong&gt;鍵。&lt;/p&gt; &lt;p&gt;複製儲存格E2，貼至儲存格E2:K7。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;公式說明：&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;IF(姓名=$D2,日期)&lt;/strong&gt;：找出符合指定姓名的日期陣列。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;SMALL(IF(姓名=$D2,日期),COLUMN(A:A))&lt;/strong&gt;：因為日期可以比較大小，所以透過&lt;strong&gt;&lt;em&gt; SMALL &lt;/em&gt;&lt;/strong&gt;函數，找出第1個、第2個、…日期。其中COLUMN(A:A)=1，向右複製時會產生COLUMN(B:B)=2、COLMUN(C:C)=3、…。&lt;/p&gt; &lt;p&gt;因為&lt;strong&gt;&lt;em&gt; SMALL &lt;/em&gt;&lt;/strong&gt;函式中如果沒有對應的值，則會顯示&lt;strong&gt;&lt;em&gt; #NUM! &lt;/em&gt;&lt;/strong&gt;錯誤訊息，所以用&lt;strong&gt;&lt;em&gt; IFERROR &lt;/em&gt;&lt;/strong&gt;函數將錯誤訊息轉成空白字串。&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-3195918698825690874?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/wnZ367f0bf5UOj8k_tMeomDGEGc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/wnZ367f0bf5UOj8k_tMeomDGEGc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/wnZ367f0bf5UOj8k_tMeomDGEGc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/wnZ367f0bf5UOj8k_tMeomDGEGc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/JVHLXU05iyE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/3195918698825690874/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/excel_16.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/3195918698825690874?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/3195918698825690874?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/JVHLXU05iyE/excel_16.html" title="Excel-依日期先後摘要" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-fOQyvXYoAwA/Tz3YR0lYCgI/AAAAAAAANsg/WdPXTtSL_nY/s72-c/image%25255B7%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/excel_16.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QDSXw-fip7ImA9WhRaE0w.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-1008250839829071666</id><published>2012-02-15T06:16:00.001-08:00</published><updated>2012-02-15T06:16:18.256-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-15T06:16:18.256-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-摘要表格(INDIRECT+ADDRESS+ROW+陣列公式)</title><content type="html">&lt;p&gt;有網友問到，在 Excel 中如下圖左的一個資料表，要重新摘要成下圖右的資料表，該如何處理？&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【準備工作】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;為了便於公式說明，請選取儲存格A1:B9，按一下&lt;strong&gt;&lt;em&gt; Ctrl+Shift+F3 &lt;/em&gt;&lt;/strong&gt;鍵，勾選「頂端列」，定義名稱：專案、姓名。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-40RPU3f4I5M/Tzu-MI8hOEI/AAAAAAAANqw/gtQQ8_gZCM0/image3.png?imgmax=800" width="519" height="274"&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【設計】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;儲存格E2：{=IFERROR(INDIRECT(ADDRESS(SMALL(IF(專案=E$1,ROW(專案)),ROW(1:1)),2)),"")}&lt;/p&gt; &lt;p&gt;這是陣列公式，輸入完成請按&lt;strong&gt;&lt;em&gt; Ctrl+Shift+Enter&lt;/em&gt;&lt;/strong&gt; 鍵。&lt;/p&gt; &lt;p&gt;複製儲存格E2，貼至儲存格E2:G5。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;IF(專案=E$1,ROW(專案))&lt;/em&gt;&lt;/strong&gt;：取得專案中符合儲存格E1內容的列號陣列。&lt;/p&gt; &lt;p&gt;本例結果為：{ 2, False, False, 5, False, False, False, 9 }&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;SMALL(IF(專案=E$1,ROW(專案)),ROW(1:1))&lt;/em&gt;&lt;/strong&gt;：取得上式陣列中的第1小值(本例為2)，若往下複製時，ROW(1:1)會變為ROW(2:2)，則可以取得第2小值(本例為5)，依此類推。&lt;/p&gt; &lt;p&gt;接著透過&lt;strong&gt; ADDRESS(列號,2) &lt;/strong&gt;來取得儲存格的位址，再透過&lt;strong&gt;&lt;em&gt; INDIRECT &lt;/em&gt;&lt;/strong&gt;函數，將該位址轉換為儲存格內容。&lt;/p&gt; &lt;p&gt;因為複製儲存格的過程可能產生錯誤訊息，利用&lt;strong&gt;&lt;em&gt; IFERROR &lt;/em&gt;&lt;/strong&gt;函數，將錯誤值以空字串取代。&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【修改】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;如果你想省略&lt;strong&gt;&lt;em&gt; ADDRESS&lt;/em&gt;&lt;/strong&gt; 函數，可以將公式修改如下：&lt;/p&gt; &lt;p&gt;儲存格E2：{=IFERROR(INDIRECT("B"&amp;amp;SMALL(IF(專案=E$1,ROW(專案)),ROW(1:1))),"")}&lt;/p&gt; &lt;p&gt;這是陣列公式，輸入完成請按&lt;strong&gt;&lt;em&gt; Ctrl+Shift+Enter&lt;/em&gt;&lt;/strong&gt; 鍵。&lt;/p&gt; &lt;p&gt;複製儲存格E2，貼至儲存格E2:G5。&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【補充資料】&lt;/strong&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;span class="apple-style-span"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;詳細函數說明，請參閱微軟網站：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 13.5pt; margin-left: 0cm; margin-right: 0cm"&gt;&lt;span style="font-family: ; color: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;INDIRECT&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial"&gt;&lt;font face="新細明體"&gt;：&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span lang="EN-US"&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342609.aspx"&gt;&lt;span style="font-family: ; color: ; mso-bidi-font-family: arial"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;&lt;u&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342609.aspx&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: ; color: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #76923c 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-border-insideh: 1.0pt solid #76923c; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 191; mso-border-insidev: 1.0pt solid #76923c; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 191" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="604"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #76923c 1pt solid; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191" valign="top" width="602"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#ffffff"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;INDIRECT&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：傳回文字串所指定的參照位址。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-border-top-alt: solid #76923c 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 191" valign="top" width="602"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;INDIRECT(ref_text,[a1])&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;ref_text&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：單一儲存格的參照位址，其中包含&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;A1&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;欄名列號表示法、&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;R1C1&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;欄名列號表示法、定義為參照位址的名稱，或定義為字串的儲存格參照位址。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;a1:&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;指定&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;ref_text&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;儲存格中所包含參照位址類型的邏輯值。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;ADDRESS&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial"&gt;&lt;font face="新細明體"&gt;：&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: " lang="EN-US"&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342163.aspx"&gt;&lt;span style="color: "&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#0000ff"&gt;&lt;u&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342163.aspx&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #76923c 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-border-insideh: 1.0pt solid #76923c; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 191; mso-border-insidev: 1.0pt solid #76923c; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 191" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="598"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #76923c 1pt solid; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#ffffff"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;ADDRESS&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：在已知指定列和欄號下，取得工作表中儲存格的位址。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-border-top-alt: solid #76923c 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;row_num&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：指定要用在儲存格參照中之列號的數值。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;column_num&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：指定要用在儲存格參照中之欄號的數值。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;abs_num&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：可省略。指定要傳回之參照類型的數值。傳回此參照類型如下：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;1&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;或省略：絕對儲存格參照；&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;2&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：列：絕對；欄：相對；&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;3&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：列：相對；欄：絕對；&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;4&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-family: arial; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：相對參照&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-fareast-font-family: 新細明體; mso-bidi-font-family: arial; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-1008250839829071666?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/CViyNm4DxGZxbv3Jd7ChvhCXCcA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CViyNm4DxGZxbv3Jd7ChvhCXCcA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/CViyNm4DxGZxbv3Jd7ChvhCXCcA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CViyNm4DxGZxbv3Jd7ChvhCXCcA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/JpLkQTS2I1E" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/1008250839829071666/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/excel-indirectaddressrow.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/1008250839829071666?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/1008250839829071666?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/JpLkQTS2I1E/excel-indirectaddressrow.html" title="Excel-摘要表格(INDIRECT+ADDRESS+ROW+陣列公式)" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-40RPU3f4I5M/Tzu-MI8hOEI/AAAAAAAANqw/gtQQ8_gZCM0/s72-c/image3.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/excel-indirectaddressrow.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QGR3g5eip7ImA9WhRaE0w.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-3843238057553836435</id><published>2012-02-15T06:15:00.003-08:00</published><updated>2012-02-15T06:15:26.622-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-15T06:15:26.622-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-製作英文單字字典查詢超連結</title><content type="html">&lt;p&gt;YAHOO!奇摩的字典功能，相信很多人已經用過，其網址為：&lt;/p&gt; &lt;p&gt;&lt;a href="http://tw.dictionary.yahoo.com/dictionary"&gt;http://tw.dictionary.yahoo.com/dictionary&lt;/a&gt;&lt;/p&gt; &lt;p&gt;只要在「字典搜尋」中輸入一個單字，即可進行字典查詢，以「conflict」為例：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-HEPbkEv-JTk/Tzn0nDZEAUI/AAAAAAAANng/1Q9aN9BseKk/image%25255B3%25255D.png?imgmax=800" width="622" height="416"&gt;&lt;/p&gt; &lt;p&gt;找到的字典內容如下圖示，觀察網址列上的網址為：&lt;/p&gt; &lt;p&gt;&lt;a href="http://tw.dictionary.yahoo.com/dictionary?p=conflict"&gt;http://tw.dictionary.yahoo.com/dictionary?p=conflict&lt;/a&gt;&lt;/p&gt; &lt;p&gt;其實是在「&lt;a href="http://tw.dictionary.yahoo.com/dictionary?p"&gt;http://tw.dictionary.yahoo.com/dictionary?p&lt;/a&gt;=」字串中串接單字。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-aK5P0pgKhIM/Tzn0n8OyZoI/AAAAAAAANno/EA21fekSoyY/image%25255B7%25255D.png?imgmax=800" width="622" height="599"&gt;&lt;/p&gt; &lt;p&gt;所以如果在 Excel 中已有一串單字，現在要來快速製作可以查詢單字的超連結：&lt;/p&gt; &lt;p&gt;儲存格A2：=HYPERLINK("http://tw.dictionary.yahoo.com/dictionary?p="&amp;amp;A2,A2)&lt;/p&gt; &lt;p&gt;複製儲存格A2，往下各列貼上。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-qNdY8__cKiM/Tzn0qJo7yXI/AAAAAAAANnw/8SypXTGtVgc/image%25255B11%25255D.png?imgmax=800" width="305" height="340"&gt;&lt;/p&gt; &lt;p&gt;以後只要在按一下單字的超連結，即可查到該單字：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-QMWAmlcGrh0/Tzn0qlHg-4I/AAAAAAAANn4/soX43PmJA-g/image%25255B15%25255D.png?imgmax=800" width="622" height="587"&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【補充說明】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;關於&lt;strong&gt;&lt;em&gt; HYPERLINK &lt;/em&gt;&lt;/strong&gt;函數的詳細說明，請參考微軟網站：&lt;/p&gt; &lt;p&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342583.aspx"&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342583.aspx&lt;/a&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-3843238057553836435?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YNXrHOUF9H2bJ2F8dcbDx8brl-U/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YNXrHOUF9H2bJ2F8dcbDx8brl-U/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YNXrHOUF9H2bJ2F8dcbDx8brl-U/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YNXrHOUF9H2bJ2F8dcbDx8brl-U/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/h2JH3aDdnIw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/3843238057553836435/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/excel_15.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/3843238057553836435?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/3843238057553836435?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/h2JH3aDdnIw/excel_15.html" title="Excel-製作英文單字字典查詢超連結" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/-HEPbkEv-JTk/Tzn0nDZEAUI/AAAAAAAANng/1Q9aN9BseKk/s72-c/image%25255B3%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/excel_15.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QFQ30_cSp7ImA9WhRaE0w.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-5310873536156767396</id><published>2012-02-15T06:15:00.001-08:00</published><updated>2012-02-15T06:15:12.349-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-15T06:15:12.349-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="旅遊資訊" /><title>2012台北燈節</title><content type="html">&lt;p&gt;趁著 2012 台北燈節結束前的一天晚上，夫妻兩人到國父紀念館看台北的燈會。雖然天空還下著雨絲，看燈的人仍是萬頭鑽動。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-wWlXi2jY_lE/Tzu9zelMppI/AAAAAAAANpg/aFtKC9JHzs4/DSC05373_.jpg?imgmax=800" width="622" height="228"&gt;&lt;/p&gt; &lt;p&gt;正好趕上 8:30 的主燈秀，轉動中的「光龍」，配合噴水池、雷射光和背景的台北 101 相互輝映。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-787t-ZmuIUY/Tzu90LNqNMI/AAAAAAAANpo/XUl33IgPJW0/DSC05336_.jpg?imgmax=800" width="622" height="934"&gt;&lt;/p&gt; &lt;p&gt;廣場中有各單位的大型燈區，許多學生們的作品都做的很好呢！&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-sALex1-LKu4/Tzu908pp3NI/AAAAAAAANpw/l7-M01J4Oz0/DSC05320_.jpg?imgmax=800" width="302" height="202"&gt;&amp;nbsp;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-cXkJZGDWKGk/Tzu914eUnxI/AAAAAAAANp4/z8EsBVWHPLw/DSC05323_.jpg?imgmax=800" width="302" height="202"&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-nEO6CRDJ9Cc/Tzu92t5bpvI/AAAAAAAANqA/TSG4MLpVjGo/DSC05364_.jpg?imgmax=800" width="302" height="202"&gt;&amp;nbsp;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-WSaaKHkhBk0/Tzu93qX0mII/AAAAAAAANqI/oewMcfUeUl8/DSC05365_.jpg?imgmax=800" width="302" height="202"&gt;&lt;/p&gt; &lt;p&gt;國父紀念館週邊行道樹被裝點著星光點點、美不勝收，因為攝影技術不好，無法忠實呈現。但是，數大不就是美嗎！&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-tSblMNQl2w4/Tzu94qGsUVI/AAAAAAAANqM/I5JPIcEmexg/DSC05385_.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;仁愛路一直到圓環的路上，也是光彩奪目：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-Wm5ns13_oEQ/Tzu95SoeAkI/AAAAAAAANqY/TI02gOA7lUM/DSC05391_.jpg?imgmax=800" width="622" height="206"&gt;&lt;/p&gt; &lt;p&gt;小倆口想說用走的回家，路上經過有名的「東區粉圓」，看到這裡和國父紀念館一樣熱鬧，排隊人潮不斷，位子根本不夠坐，所以買了一碗就在路邊椅子上，你一口、我一口的吃了起來。就這樣很滿足的散步回家，一共走了整整二小時，卻一點都不累，更何況也補充了能量(好吃的粉圓)！&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-cMDNR870jPg/Tzu96cCT4BI/AAAAAAAANqg/bXc_JmElwzI/DSC05393_.jpg?imgmax=800" width="302" height="202"&gt;&amp;nbsp;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-YZWKdoMmU7Y/Tzu97T8pxJI/AAAAAAAANqo/1JQjS_86Y8c/DSC05394_.jpg?imgmax=800" width="302" height="202"&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-5310873536156767396?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OMwv6Vt9ThKUEkZYoRWbXlks_l4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OMwv6Vt9ThKUEkZYoRWbXlks_l4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OMwv6Vt9ThKUEkZYoRWbXlks_l4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OMwv6Vt9ThKUEkZYoRWbXlks_l4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/PJ2Tt9UTcJc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/5310873536156767396/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/2012.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/5310873536156767396?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/5310873536156767396?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/PJ2Tt9UTcJc/2012.html" title="2012台北燈節" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-wWlXi2jY_lE/Tzu9zelMppI/AAAAAAAANpg/aFtKC9JHzs4/s72-c/DSC05373_.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/2012.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0AEQH89cSp7ImA9WhRbGUg.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-524083019175088301</id><published>2012-02-11T02:21:00.001-08:00</published><updated>2012-02-11T02:21:41.169-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-11T02:21:41.169-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="電腦教學" /><title>請改由火星人的天空之城繼續閱讀其他文章</title><content type="html">&lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;網友們：&lt;/p&gt; &lt;p&gt;請改由火星人的天空之城(&lt;a href="http://isvincent.blogspot.com/"&gt;http://isvincent.blogspot.com/&lt;/a&gt;)繼續閱讀其他文章。&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-524083019175088301?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/dlZHgcUfVIMDEwG7ZK8eSexLxI4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dlZHgcUfVIMDEwG7ZK8eSexLxI4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/dlZHgcUfVIMDEwG7ZK8eSexLxI4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dlZHgcUfVIMDEwG7ZK8eSexLxI4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/ud8GOb3tyKU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/524083019175088301/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/blog-post_11.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/524083019175088301?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/524083019175088301?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/ud8GOb3tyKU/blog-post_11.html" title="請改由火星人的天空之城繼續閱讀其他文章" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/blog-post_11.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUQBSXozeSp7ImA9WhRbGUg.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-8197549675597112878</id><published>2012-02-11T01:42:00.001-08:00</published><updated>2012-02-11T01:42:38.481-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-11T01:42:38.481-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Word-將文件中內嵌字型</title><content type="html">&lt;p&gt;在 Word 中編輯文件，字型是排版時是否美觀的重要因素，而在自己的電腦呈現漂亮的文件，移至其他電腦時，會因他台電腦沒有文件中使用的字型，而導致全部變回預設字型(例如：新細明體)。如何能將文件中的字型一起打包在文件中呢？&lt;/p&gt; &lt;p&gt;以 Word 2010 為例，在儲存 Word 文件時先做以下的設定：&lt;/p&gt; &lt;p&gt;1. 選取[檔案/選項]，再選取[儲存格]標籤。&lt;/p&gt; &lt;p&gt;2. 勾選「在檔案中內嵌字型」選項。&lt;/p&gt; &lt;p&gt;3. 勾選「不要內嵌一般系統字型」選項，因為這些字型幾乎每部電腦的 Windows 系統都會有。&lt;/p&gt; &lt;p&gt;4. 如果勾選「只嵌入文件中使用的字元」選項，則不會將整個字型檔都放入文件中。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-8frE8gAkyqI/TzY3_kmaPqI/AAAAAAAANlA/a7zCgjzzk-M/image2.png?imgmax=800" width="621" height="576"&gt;&lt;/p&gt; &lt;p&gt;在文件中使用內嵌字型，一定會使文件的體積變大，而且不是所有字型都能順利使用。你可以在字型資料夾中(C:\Windows\Fonts)中選取你想要的字型，按一下右鍵，再選[內容]選項，在「詳細資料」標籤下可以檢視內嵌字型的授權範圍。而有些字型會將一般、 粗體、 斜體及粗體斜體視為不同的字型.ttf 檔案。&lt;/p&gt; &lt;p&gt;參考以下的範例：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-ygswJbb_7vY/TzY4ARntjkI/AAAAAAAANlI/D15lkwoHJrw/image5.png?imgmax=800" width="377" height="480"&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-BFlKPbAgDwA/TzY4BJHbJXI/AAAAAAAANlM/vzpUpCQQNGo/image8.png?imgmax=800" width="377" height="480"&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-WIiQJA8-4cQ/TzY4B0TBrVI/AAAAAAAANlU/NTXRA83rZ_k/image14.png?imgmax=800" width="377" height="480"&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【補充資料】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;關於內嵌字型的授權說明可參考微軟網站：&lt;a href="http://support.microsoft.com/kb/290952/zh-tw"&gt;http://support.microsoft.com/kb/290952/zh-tw&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-110hj1hF0FA/TzY4Crwf40I/AAAAAAAANlg/J6pErB7eAug/image18.png?imgmax=800" width="589" height="420"&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-8197549675597112878?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/4oKP4XSndsN-qSscswhB_bHXAx4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4oKP4XSndsN-qSscswhB_bHXAx4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/4oKP4XSndsN-qSscswhB_bHXAx4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4oKP4XSndsN-qSscswhB_bHXAx4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/WJ-AM10-7wg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/8197549675597112878/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/word_11.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/8197549675597112878?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/8197549675597112878?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/WJ-AM10-7wg/word_11.html" title="Word-將文件中內嵌字型" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh3.ggpht.com/-8frE8gAkyqI/TzY3_kmaPqI/AAAAAAAANlA/a7zCgjzzk-M/s72-c/image2.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/word_11.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MFSX8yeip7ImA9WhRbF0s.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-4784206473720901921</id><published>2012-02-08T22:36:00.001-08:00</published><updated>2012-02-08T22:36:58.192-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-08T22:36:58.192-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="電腦教學" /><title>停用控制台的程式</title><content type="html">&lt;p&gt;在學校的公用電腦上，一般不讓學生可以修改或執行控制台中的程式，該如何停用控制台中的程式？參考以下的步驟：&lt;/p&gt; &lt;p&gt;1. 按一下&lt;strong&gt;&lt;em&gt; WinKey+R &lt;/em&gt;&lt;/strong&gt;鍵，輸入「gpedit.msc」，按一下[確定]按鈕，開啟[本機群組原則編輯器]對話框。&lt;/p&gt; &lt;p&gt;2. 選取[使用者設定/系統管理範本/控制台]中的「禁止存取控制台」項目。  &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-lKryfjxJs44/TzNphQAEhhI/AAAAAAAANio/xcg673alEL8/image%25255B2%25255D.png?imgmax=800" width="616" height="545"&gt;  &lt;p&gt;3. 勾選「已啟甪」，按一下[確定]按鈕。  &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-2hhZUJc9PDQ/TzNpiJmWuyI/AAAAAAAANiw/umNA3golYBc/image%25255B6%25255D.png?imgmax=800" width="620" height="567"&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-4784206473720901921?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ErdU2QLK1n30PMXLTQHj_VIyq-A/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ErdU2QLK1n30PMXLTQHj_VIyq-A/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ErdU2QLK1n30PMXLTQHj_VIyq-A/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ErdU2QLK1n30PMXLTQHj_VIyq-A/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/rh_F7X9cutw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/4784206473720901921/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/blog-post.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/4784206473720901921?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/4784206473720901921?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/rh_F7X9cutw/blog-post.html" title="停用控制台的程式" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-lKryfjxJs44/TzNphQAEhhI/AAAAAAAANio/xcg673alEL8/s72-c/image%25255B2%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEAMQno9fip7ImA9WhRbFks.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-8020264294357148908</id><published>2012-02-07T16:59:00.001-08:00</published><updated>2012-02-07T16:59:43.466-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-07T16:59:43.466-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-依字元剖析資料(Search)</title><content type="html">&lt;p&gt;在 Excel 的工作表中，如果要將資料依某個字元的位置，剖析成二部分，該如何處理？其實你只要使用 Excel 提供的資料剖析工具即可輕鬆完成，但我們要以公式來練習這個動作。&lt;/p&gt; &lt;p&gt;儲存格B2：=LEFT(A2,SEARCH(":",A2)-1)&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;SEARCH(":",A2)&lt;/em&gt;&lt;/strong&gt;：找尋「:」字元的位置，再利用&lt;strong&gt;&lt;em&gt; LEFT &lt;/em&gt;&lt;/strong&gt;函數，由字串左邊取到「:」字元位置的前一字元。&lt;/p&gt; &lt;p&gt;儲存格B2：=RIGHT(A2,LEN(A2)-SEARCH(":",A2))&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;LEN(A2)&lt;/em&gt;&lt;/strong&gt;：計算字串的長度。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;LEN(A2)-SEARCH(":",A2)&lt;/em&gt;&lt;/strong&gt;：計算「:」字元至字串最右邊有幾個字元，再利用&lt;strong&gt;&lt;em&gt; RIGHT &lt;/em&gt;&lt;/strong&gt;函數取出這些字串。&lt;/p&gt; &lt;p&gt;複製儲存格B2:C2，往下各列貼上。儲存格中的字串，如果沒有「:」字元，會出現錯誤訊息。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-axzI15uJIHo/TzHI_iMy2dI/AAAAAAAANh4/JQrgKOE1Xck/image%25255B7%25255D.png?imgmax=800" width="307" height="167"&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【補充說明】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;關於函數的相同說明，可參閱微軟網站： &lt;/p&gt; &lt;p&gt;SEARCH：&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342873.aspx"&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342873.aspx&lt;/a&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342873.aspx"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#0000ff"&gt;&lt;u&gt;&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #76923c 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-border-insideh: 1.0pt solid #76923c; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 191; mso-border-insidev: 1.0pt solid #76923c; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 191" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="598"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #76923c 1pt solid; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#ffffff"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;SEARCH&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：會在某個文字字串內找到另一個文字字串，並傳回該文字字串在第一個文字字串中的起始位置。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-border-top-alt: solid #76923c 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;SEARCH(find_text,within_text,[start_num])&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;find_text&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：要尋找的文字。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;within_text&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：要在其中搜尋&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; find_text &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;引數值的文字。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;start_num&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：在&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; within_text &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;引數中開始搜尋的字元數。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#000000"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-8020264294357148908?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/TM_4-iUhugXoA-jrU5XHf2qoQr4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TM_4-iUhugXoA-jrU5XHf2qoQr4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/TM_4-iUhugXoA-jrU5XHf2qoQr4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TM_4-iUhugXoA-jrU5XHf2qoQr4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/FrfqhhdXDDM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/8020264294357148908/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/excel-search.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/8020264294357148908?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/8020264294357148908?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/FrfqhhdXDDM/excel-search.html" title="Excel-依字元剖析資料(Search)" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/-axzI15uJIHo/TzHI_iMy2dI/AAAAAAAANh4/JQrgKOE1Xck/s72-c/image%25255B7%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/excel-search.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUENR3o9cSp7ImA9WhRbFk0.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-6493566279878191387</id><published>2012-02-07T00:34:00.001-08:00</published><updated>2012-02-07T00:34:56.469-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-07T00:34:56.469-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Word-為文件每一行編行號</title><content type="html">&lt;p&gt;在 Word 中編輯文件時，有時為了便於溝通，需要用到每一行的行號，你只要選取[版面配置]標籤之下的「行號」，再選取連續編號或每頁重新編號或是每節重新編號等動作，Word 會自動幫你將每一行打上編號，而你也可以指定某一段不要編號。&lt;/p&gt; &lt;p&gt;而顯示的行號在列印時也會一併列印出來，要注意哦！&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-fZ5BnPxgqcM/TzDiL17ocII/AAAAAAAANhY/UIq247mgWu0/image%25255B3%25255D.png?imgmax=800" width="620" height="467"&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-6493566279878191387?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/qrd1yw6P25ou27DWzrLSoV38_FM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qrd1yw6P25ou27DWzrLSoV38_FM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/qrd1yw6P25ou27DWzrLSoV38_FM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qrd1yw6P25ou27DWzrLSoV38_FM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/e8L-IgQL9vg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/6493566279878191387/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/word.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/6493566279878191387?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/6493566279878191387?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/e8L-IgQL9vg/word.html" title="Word-為文件每一行編行號" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/-fZ5BnPxgqcM/TzDiL17ocII/AAAAAAAANhY/UIq247mgWu0/s72-c/image%25255B3%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/word.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkEBQ3gyeSp7ImA9WhRbFUw.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-1164809356546649138</id><published>2012-02-05T22:44:00.001-08:00</published><updated>2012-02-05T22:44:12.691-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-05T22:44:12.691-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="電腦教學" /><title>YouTube-讓影片自動播放</title><content type="html">&lt;p&gt;女兒問到如何讓 YouTube 上的影片能自動播放？如果你在 YouTube 中登入 Google 帳戶，則可以檢視個人的播放記錄(參考下圖)，按一下[播放記錄]上方的影片縮圖(會顯示「全部播放」字樣)。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-6-xt7p9-zMk/Ty92uBpahhI/AAAAAAAANgw/JNYGALblaSc/image%25255B7%25255D.png?imgmax=800" width="622" height="395"&gt;&lt;/p&gt; &lt;p&gt;在視窗下方即會顯示播放控制器，可以點選任一個影片，可以設定影片循環播放、隨機播放。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-0RgpyzyOvDg/Ty92umM99tI/AAAAAAAANg4/WH8pKh6Ef7E/image%25255B12%25255D.png?imgmax=800" width="622" height="394"&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-1164809356546649138?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/XqNl3g_ISkl9D_IM_iF6SrzVuZY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XqNl3g_ISkl9D_IM_iF6SrzVuZY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/XqNl3g_ISkl9D_IM_iF6SrzVuZY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XqNl3g_ISkl9D_IM_iF6SrzVuZY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/AuXtjijD-w0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/1164809356546649138/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/youtube.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/1164809356546649138?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/1164809356546649138?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/AuXtjijD-w0/youtube.html" title="YouTube-讓影片自動播放" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/-6-xt7p9-zMk/Ty92uBpahhI/AAAAAAAANgw/JNYGALblaSc/s72-c/image%25255B7%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/youtube.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8GQX87eyp7ImA9WhRbFEQ.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-2033775765276162061</id><published>2012-02-05T18:03:00.001-08:00</published><updated>2012-02-05T18:03:40.103-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-05T18:03:40.103-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="電腦教學" /><title>將Blogger文章分享到Google+</title><content type="html">&lt;p&gt;如果你使用 Blogger 撰寫部落格文章，而且你使用的 Google 帳號也加入了 Google+，則可以方便的將 Blogger 文章分享到 Google+中。&lt;/p&gt; &lt;p&gt;如果你的 Google 帳戶已加入 Google+，則登入 Blogger 的會員管理介面時，在「文章和留言」中會發現多了一個「分享至 Google+」，你可以選擇「是／否」要在發佈文章時自動尋問你是否要透過 Google+ 分享。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-Zw-KRgWAEGI/Ty809FbXwCI/AAAAAAAANfw/wSDSHKxePgY/image%25255B4%25255D.png?imgmax=800" width="622" height="460"&gt;&lt;/p&gt; &lt;p&gt;如果你想手動分享某篇文章，則在 Blogger 管理介面中，切換至「發表文章」項下，找到要分享的文章名稱。將滑鼠移至名稱上點選「分享」。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-ReMarepLoX4/Ty809g-NGUI/AAAAAAAANf0/S9UCw2mVWaU/image%25255B12%25255D.png?imgmax=800" width="622" height="460"&gt;&lt;/p&gt; &lt;p&gt;你可以加入留言及選擇分享的方式，按一下[分享]按鈕，即會分享到 Google+。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-ByUBSJgB1Yw/Ty80-M2pNBI/AAAAAAAANf8/jjQAmY4W8Yw/image%25255B22%25255D.png?imgmax=800" width="549" height="443"&gt;&lt;/p&gt; &lt;p&gt;切換至 Google+ 查看結果：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-DKolM8SLcD0/Ty80-v6BMBI/AAAAAAAANgA/mfqYGJpR5_U/image%25255B18%25255D.png?imgmax=800" width="622" height="491"&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-2033775765276162061?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/pLwvBte6ZkM4u52NDVjpOjPGPkg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pLwvBte6ZkM4u52NDVjpOjPGPkg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/pLwvBte6ZkM4u52NDVjpOjPGPkg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pLwvBte6ZkM4u52NDVjpOjPGPkg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/45WPs8k6DBo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/2033775765276162061/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/bloggergoogle.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/2033775765276162061?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/2033775765276162061?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/45WPs8k6DBo/bloggergoogle.html" title="將Blogger文章分享到Google+" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh3.ggpht.com/-Zw-KRgWAEGI/Ty809FbXwCI/AAAAAAAANfw/wSDSHKxePgY/s72-c/image%25255B4%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/bloggergoogle.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEQFRH49fyp7ImA9WhRbFEk.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-7754326842791897863</id><published>2012-02-05T00:04:00.001-08:00</published><updated>2012-02-05T03:45:15.067-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-05T03:45:15.067-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="電腦教學" /><title>下載Google Maps的圖片製作大圖輸出</title><content type="html">&lt;p&gt;寒假中因為要協助小孩完成其一項寒假作業，所以要來製作一個內容關於旅遊的東西。和小孩討論的結果，是要製作一個紙張的 Google 地圖，上面可以呈現照片和文字標記。&lt;/p&gt; &lt;p&gt;先找了一個可以下載 Google Maps 圖片的軟體：Google Map Saver。&lt;/p&gt; &lt;p&gt;程式下載：&lt;a title="http://www.codres.de/downloads/gms.exe" href="http://www.codres.de/downloads/gms.exe"&gt;http://www.codres.de/downloads/gms.exe&lt;/a&gt;&lt;/p&gt; &lt;p&gt;這是個免安裝的綠色軟體，下載後即可執行(gms.exe)。&lt;/p&gt; &lt;p&gt;1. 在[ Location/POI ]下拉式清單方塊中輸入「Taiwan」，會顯示台灣附近的地圖。&lt;/p&gt; &lt;p&gt;2. 在[ Resolution ]下拉式清單方塊中選取或自訂輸入地圖的大小。&lt;/p&gt; &lt;p&gt;3. 在[ Zoom ]下拉式清單中選取地圖的比例大小，數值愈大，地圖也愈大愈清楚，但地圖 範圍較小。&lt;/p&gt; &lt;p&gt;4. 在[Map Type]下拉式清單中選取要檢視一般地圖，還是衛星地圖等。&lt;/p&gt; &lt;p&gt;5. 按一下[ Go ]按鈕，稍等一下，程式會陸續將地圖顯示出來。(如果再改一些設定，都要再次按「Go」按鈕，才會重抓地圖內容。)&lt;/p&gt; &lt;p&gt;6. 將地圖移至你想要抓取的地圖位置。&lt;/p&gt; &lt;p&gt;7. 選取地圖要儲存的檔案格式。&lt;/p&gt; &lt;p&gt;8. 按一下「Save Capture as」按鈕，即可儲存格該圖片。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-9TBY1o6--fI/Ty435hsdU8I/AAAAAAAANdw/9UgwV9ZevK8/image18.png?imgmax=800" width="620" height="543"&gt;&lt;/p&gt; &lt;p&gt;接下來要將這個大圖印在多張A4紙張中，再來拼貼成一大張圖(當然你也可以大圖輸出，就不用這麼麻煩了，只是要花點錢吧)。&lt;/p&gt; &lt;p&gt;1. 在 Excel 中插入這個地圖檔。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-shlCtMRvpBA/Ty436TmkzUI/AAAAAAAANd4/kHRfIodlBdA/22222.png?imgmax=800" width="438" height="606"&gt;&lt;/p&gt; &lt;p&gt;2. 由於要印出比較大的地圖內容，所以刻意在版面設定中將縮放比例設為272(你可以自訂)，將其放大2.72倍。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-8BlGI6qjnxI/Ty43680yLyI/AAAAAAAANd8/1xPJfQNmwkA/image2.png?imgmax=800" width="459" height="432"&gt;&lt;/p&gt; &lt;p&gt;3. 預覽列印時可以檢視每張要印出來的地圖大小，本例共有9張A4。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-HOI5DN1awwY/Ty437m1KdoI/AAAAAAAANeI/NTls-rWt0eo/image14.png?imgmax=800" width="622" height="565"&gt;&lt;/p&gt; &lt;p&gt;接著，將小孩已事先在 Word 中輸入的文字標記和圖片印出來，並依外型剪裁好。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-gpp6xzXG91M/Ty438g3YFxI/AAAAAAAANeM/AGV3prpnyQI/image13.png?imgmax=800" width="620" height="454"&gt;&lt;/p&gt; &lt;p&gt;最後將列印出來的地圖依序貼好(3X3張A4)，變成一張大地圖。再依地圖位置，將文字和圖片標記貼在地圖上。稍加修飾之後，作品如下圖。這是一個客製化、手工製的 Google 地圖旅遊景點標示：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-HMjvydchGaU/Ty439OlEO1I/AAAAAAAANeY/t4fCFxn7ks4/DSC05304-2_3.jpg?imgmax=800" width="622" height="847"&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-7754326842791897863?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/TllNHuQU_OYrHldO_Y6SrHmtntQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TllNHuQU_OYrHldO_Y6SrHmtntQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/TllNHuQU_OYrHldO_Y6SrHmtntQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TllNHuQU_OYrHldO_Y6SrHmtntQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/2HoqWk6NCV4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/7754326842791897863/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/google-maps.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/7754326842791897863?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/7754326842791897863?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/2HoqWk6NCV4/google-maps.html" title="下載Google Maps的圖片製作大圖輸出" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/-9TBY1o6--fI/Ty435hsdU8I/AAAAAAAANdw/9UgwV9ZevK8/s72-c/image18.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/google-maps.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4MQ344cSp7ImA9WhRbE04.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-1035156792555314504</id><published>2012-02-03T20:49:00.001-08:00</published><updated>2012-02-03T20:49:42.039-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-03T20:49:42.039-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-計算間隔列的和、平均(陣列公式、SUMPRODUCT)</title><content type="html">&lt;p&gt;在 Excel 中有個數列，如果只想取出固定間隔的數值來計算該如何處理？例如，計算項目1,4,7, ... , 22, 25的和、平均。&lt;/p&gt; &lt;p&gt;為了簡化公式，選取儲存格A1:A27，按一下&lt;strong&gt;&lt;em&gt; Ctrl+Shift+F3 &lt;/em&gt;&lt;/strong&gt;鍵，建立名稱：項目、數值。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-jbB_28kKpd8/Tyy45E0QXsI/AAAAAAAANcA/0fBMdVJJtFU/image%25255B7%25255D.png?imgmax=800" width="424" height="599"&gt;&lt;/p&gt; &lt;p&gt;以下分別使用四種不同方式來設計，試著比較一下：&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【方法一：使用項目欄位+陣列公式】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;儲存格E2：{=SUM(IF(MOD(項目,3)=1,數值))}&lt;/p&gt; &lt;p&gt;儲存格E3：{=AVERAGE(IF(MOD(項目,3)=1,數值))}&lt;/p&gt; &lt;p&gt;此為陣列公式，輸入完成要按 &lt;strong&gt;&lt;em&gt;Ctrl+Shift+Enter&lt;/em&gt;&lt;/strong&gt; 鍵。&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【方法二：不使用項目欄位+陣列公式】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;儲存格E2：{=SUM(IF(MOD(ROW(數值),3)=2,數值))}&lt;/p&gt; &lt;p&gt;儲存格E3：{=AVERAGE(IF(MOD(ROW(數值),3)=2,數值))}&lt;/p&gt; &lt;p&gt;此為陣列公式，輸入完成要按 &lt;strong&gt;&lt;em&gt;Ctrl+Shift+Enter&lt;/em&gt;&lt;/strong&gt; 鍵。&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【方法三：使用項目欄位+SUMPRODUCT】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;儲存格E2：=SUMPRODUCT((MOD(項目,3)=1)*數值)&lt;/p&gt; &lt;p&gt;儲存格E3：=SUMPRODUCT((MOD(項目,3)=1)*數值)/SUMPRODUCT((MOD(項目,3)=1)*1)&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【方法四：不使用項目欄位+SUMPRODUCT】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;儲存格E2：=SUMPRODUCT((MOD(ROW(數值),3)=2)*數值)&lt;/p&gt; &lt;p&gt;儲存格E3：=SUMPRODUCT((MOD(ROW(數值),3)=2)*數值)/SUMPRODUCT((MOD(ROW(數值),3)=2)*1)&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-1035156792555314504?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/vv2MIW94DGtcwsIgIeHALovPvrY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vv2MIW94DGtcwsIgIeHALovPvrY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/vv2MIW94DGtcwsIgIeHALovPvrY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vv2MIW94DGtcwsIgIeHALovPvrY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/In8ZbB-a_nQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/1035156792555314504/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/excel-sumproduct.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/1035156792555314504?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/1035156792555314504?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/In8ZbB-a_nQ/excel-sumproduct.html" title="Excel-計算間隔列的和、平均(陣列公式、SUMPRODUCT)" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-jbB_28kKpd8/Tyy45E0QXsI/AAAAAAAANcA/0fBMdVJJtFU/s72-c/image%25255B7%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/excel-sumproduct.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0IEQHk6eyp7ImA9WhRbEUs.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-6146026215697373737</id><published>2012-02-01T23:58:00.001-08:00</published><updated>2012-02-01T23:58:21.713-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-01T23:58:21.713-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-去除字串中的括號和多餘空白</title><content type="html">&lt;p&gt;在 Excel 中如果貼上一些其他地方複製而來的資料，而你想要去除其中的括號和多餘空白，該如何處理？(參考下圖)&lt;/p&gt; &lt;p&gt;儲存格B2：=TRIM(SUBSTITUTE(SUBSTITUTE(A2,")",""),"(",""))&lt;/p&gt; &lt;p&gt;複製儲存格B2，往下各列貼上。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;SUBSTITUTE(A2,")","")&lt;/em&gt;&lt;/strong&gt;：將儲存格A2中的「(」以空串字取代。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;SUBSTITUTE(SUBSTITUTE(A2,")",""),"(","")&lt;/em&gt;&lt;/strong&gt;：將去除「(」後的字串，再去除「)」&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;TRIM &lt;/em&gt;&lt;/strong&gt;函數：移除儲存格B2中文字之間多餘的空格(僅保留文字間一個空白字元)。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-Hxt4Y_JpBWQ/TypCG5fOFlI/AAAAAAAANbg/FPJs7aPurWY/image%25255B3%25255D.png?imgmax=800" width="550" height="212"&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【補充資料】&lt;/strong&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;關於函數的詳細說請參與微軟網站：&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;TRIM：&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342967.aspx"&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342967.aspx&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;SUBSTITUTE&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'"&gt;&lt;font face="新細明體"&gt;：&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span lang="EN-US"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#0000ff"&gt;&lt;u&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342927.aspx&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #76923c 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-border-insideh: 1.0pt solid #76923c; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 191; mso-border-insidev: 1.0pt solid #76923c; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 191" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="598"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #76923c 1pt solid; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#ffffff"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;SUBSTITUTE&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="新細明體"&gt;：將文字字串中的&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; old_text &lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="新細明體"&gt;部分以新字串&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="Century Gothic"&gt; &lt;span lang="EN-US"&gt;new_text &lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;取代。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-border-top-alt: solid #76923c 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;SUBSTITUTE(text, old_text, new_text, [instance_num])&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;text&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：要取代字元的文字，或含有該文字之儲存格的參照。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;old_text&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：這是要取代的文字。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;new_text&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：是要用來取代&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; old_text &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;的文字。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;instance_num&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：指定要將第幾個&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; old_text &lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;取代為&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; new_text&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-6146026215697373737?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2nd9VxrzszDg6mXJe82qNxADsxY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2nd9VxrzszDg6mXJe82qNxADsxY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2nd9VxrzszDg6mXJe82qNxADsxY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2nd9VxrzszDg6mXJe82qNxADsxY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/REvV5rxCjFM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/6146026215697373737/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/excel_01.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/6146026215697373737?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/6146026215697373737?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/REvV5rxCjFM/excel_01.html" title="Excel-去除字串中的括號和多餘空白" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/-Hxt4Y_JpBWQ/TypCG5fOFlI/AAAAAAAANbg/FPJs7aPurWY/s72-c/image%25255B3%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/excel_01.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4ARHozfSp7ImA9WhRbEUs.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-4549210999427909516</id><published>2012-02-01T22:25:00.001-08:00</published><updated>2012-02-01T22:25:45.485-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-01T22:25:45.485-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-取含有文字形式的數字來運算(陣列公式)</title><content type="html">&lt;p&gt;在 Excel 中的資料表中(參考下圖)，其內容欄位的數字有些是文字形式。如果你選取了這些數字，Excel 在狀態列中顯示的加總結果並不會把文字形式的數字併入計算。其結果相當於使用公式：=SUM(B2:B20)。&lt;/p&gt; &lt;p&gt;如果你在計算時，想把這些文字形的數字一起和其他數字加總該如何處理。你可以透過陣列公式來處理，輸入公式後要按&lt;strong&gt;&lt;em&gt; Ctrl+Shift+F3 &lt;/em&gt;&lt;/strong&gt;鍵。&lt;/p&gt; &lt;p&gt;(1) 儲存格D3：{=SUM(--B2:B20)}&lt;/p&gt; &lt;p&gt;使用運算「--」，相當於將儲存格內容乘以兩次「-1」，即可將文字形式數字轉換為一般數字，而此公式相當於：{=SUM(B2:B20*1)}&lt;/p&gt; &lt;p&gt;(2) 儲存格D4：{=SUM(VALUE(B2:B20))}&lt;/p&gt; &lt;p&gt;透過 &lt;strong&gt;&lt;em&gt;VALUE&lt;/em&gt;&lt;/strong&gt; 函數將文字轉成數字再運算。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-mh66ZH-f7fk/TyosaGURMDI/AAAAAAAANa8/7aHVTDYu8ss/image%25255B2%25255D.png?imgmax=800" width="491" height="621"&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-4549210999427909516?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/TJBm0eNOEavJMMk9gqUrn7MZgzE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TJBm0eNOEavJMMk9gqUrn7MZgzE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/TJBm0eNOEavJMMk9gqUrn7MZgzE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TJBm0eNOEavJMMk9gqUrn7MZgzE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/tA6tIavde8I" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/4549210999427909516/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/02/excel.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/4549210999427909516?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/4549210999427909516?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/tA6tIavde8I/excel.html" title="Excel-取含有文字形式的數字來運算(陣列公式)" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/-mh66ZH-f7fk/TyosaGURMDI/AAAAAAAANa8/7aHVTDYu8ss/s72-c/image%25255B2%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/02/excel.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0YNSHcyeyp7ImA9WhRbEEo.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-1548439792739959514</id><published>2012-01-31T22:53:00.001-08:00</published><updated>2012-01-31T22:53:19.993-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-31T22:53:19.993-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-找尋數列中最大的奇數、最小的偶數(陣列公式)</title><content type="html">&lt;p&gt;在 Excel 的資料表中有一個數列，想要找出數列中最大的負數、最小的正數、最大奇數、最小偶數，該如何處理？這個題目必須以陣列公式來解決。&lt;/p&gt; &lt;p&gt;選取儲存格A1:A25，按一下&lt;strong&gt;&lt;em&gt; Ctrl+Shift+F3 &lt;/em&gt;&lt;/strong&gt;鍵，勾選「頂端列」，定義名稱：數值。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-mH5e4qoKdiQ/TyjhXuUHLBI/AAAAAAAANac/hpcqhuzEvvc/image%25255B3%25255D.png?imgmax=800" width="330" height="606"&gt;&lt;/p&gt; &lt;p&gt;以下均為陣列公式，輸入完成要按&lt;strong&gt;&lt;em&gt; Ctrl+Shift+Enter &lt;/em&gt;&lt;/strong&gt;鍵。&lt;/p&gt; &lt;p&gt;(1) 求最大的負數&lt;/p&gt; &lt;p&gt;儲存格D2：{=MAX(IF(數值&amp;lt;0,數值,FALSE))}&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;IF(數值&amp;lt;0,數值,FALSE)&lt;/em&gt;&lt;/strong&gt;：找出小於0的數值陣列，其中參數 &lt;strong&gt;&lt;em&gt;False&lt;/em&gt;&lt;/strong&gt;，如果置換為空白或0，則答案永遠為0。再以 &lt;strong&gt;&lt;em&gt;MAX&lt;/em&gt;&lt;/strong&gt; 函數求陣列中的最大值。&lt;/p&gt; &lt;p&gt;(2) 求最小的正數&lt;/p&gt; &lt;p&gt;儲存格D3：{=MIN(IF(數值&amp;gt;0,數值,FALSE))}&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;IF(數值&amp;gt;0,數值,FALSE)&lt;/em&gt;&lt;/strong&gt;：找出大於0的數值陣列。再以 &lt;strong&gt;&lt;em&gt;MIN&lt;/em&gt;&lt;/strong&gt; 函數求陣列中的最小值。&lt;/p&gt; &lt;p&gt;(3) 求最大奇數&lt;/p&gt; &lt;p&gt;儲存格D4：{=MAX(IF(MOD(數值,2)=1,數值,FALSE))}&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;IF(MOD(數值,2)=1,數值,FALSE)&lt;/em&gt;&lt;/strong&gt;：求出數值中除以2的餘數為1者(奇數)的陣列，再以 &lt;strong&gt;&lt;em&gt;MAX&lt;/em&gt;&lt;/strong&gt; 函數求陣列中的最大值。&lt;/p&gt; &lt;p&gt;(4) 求最小偶數&lt;/p&gt; &lt;p&gt;儲存格D5：{=MIN(IF(MOD(數值,2)=0,數值,FALSE))}&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;IF(MOD(數值,2)=0,數值,FALSE)&lt;/em&gt;&lt;/strong&gt;：求出數值中除以2的餘數為0者(偶數)的陣列，再以 &lt;strong&gt;&lt;em&gt;MIN&lt;/em&gt;&lt;/strong&gt; 函數求陣列中的最小值。&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-1548439792739959514?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/eXPU--HHFbbZ7869HzPM3aUNf30/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eXPU--HHFbbZ7869HzPM3aUNf30/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/eXPU--HHFbbZ7869HzPM3aUNf30/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eXPU--HHFbbZ7869HzPM3aUNf30/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/o46GsWHWSuk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/1548439792739959514/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/excel_9194.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/1548439792739959514?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/1548439792739959514?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/o46GsWHWSuk/excel_9194.html" title="Excel-找尋數列中最大的奇數、最小的偶數(陣列公式)" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/-mH5e4qoKdiQ/TyjhXuUHLBI/AAAAAAAANac/hpcqhuzEvvc/s72-c/image%25255B3%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/excel_9194.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYGRXY-cSp7ImA9WhRbEEo.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-8736108586753944782</id><published>2012-01-31T20:55:00.001-08:00</published><updated>2012-01-31T20:55:24.859-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-31T20:55:24.859-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-查詢數列最大值的位置</title><content type="html">&lt;p&gt;在 Excel 的一個資料表中，如果想要查詢最大值、對應的編號及儲存格位址，該如何處理？(參考下圖)&lt;/p&gt; &lt;p&gt;因為資料會不斷的輸入，所以將B欄定義一個名稱，方便程式說明：&lt;/p&gt; &lt;p&gt;選取B欄，按一下&lt;strong&gt;&lt;em&gt; Ctrl+Shift+F3 &lt;/em&gt;&lt;/strong&gt;鍵，勾選「頂端列」，定義名稱：數值。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-I115RJ6G9PU/TyjFulRWWSI/AAAAAAAANZ8/oZPpeGsDHBM/image%25255B3%25255D.png?imgmax=800" width="453" height="535"&gt;&lt;/p&gt; &lt;p&gt;(1) 求最大值&lt;/p&gt; &lt;p&gt;儲存格D2：=MAX(數值)&lt;/p&gt; &lt;p&gt;(2) 求最大值所在的位址&lt;/p&gt; &lt;p&gt;儲存格F2：=ADDRESS(MATCH(MAX(數值),數值,0)+1,1,4)&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;MATCH(MAX(數值),數值,0)+1&lt;/em&gt;&lt;/strong&gt;：求得最大值(第一個)在B欄中的位置。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;ADDRESS(MATCH(MAX(數值),數值,0)+1,1,4)&lt;/em&gt;&lt;/strong&gt;：利用 ADDRESS 函數，代入欄和列的號碼，對應一個儲存格位址，參數4代表以相對位址表示。&lt;/p&gt; &lt;p&gt;(3) 求最大值對應的編號&lt;/p&gt; &lt;p&gt;儲存格E2：=INDIRECT(F2,TRUE)&lt;/p&gt; &lt;p&gt;利用&lt;strong&gt;&lt;em&gt; INDIRECT &lt;/em&gt;&lt;/strong&gt;函數將儲存格位址轉換為儲存格內容。&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" class="MsoNormal"&gt;&lt;span class="apple-style-span"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;&lt;strong&gt;【補充資料】&lt;/strong&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" class="MsoNormal"&gt;&lt;span class="apple-style-span"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;詳細函數說明請參閱微軟網站：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 13.5pt; margin-left: 0cm; margin-right: 0cm"&gt;&lt;span style="font-family: ; color: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;INDIRECT&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'"&gt;&lt;font face="新細明體"&gt;：&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span lang="EN-US"&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342609.aspx"&gt;&lt;span style="font-family: ; color: ; mso-bidi-font-family: arial"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;&lt;u&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342609.aspx&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: ; color: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #76923c 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-border-insideh: 1.0pt solid #76923c; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 191; mso-border-insidev: 1.0pt solid #76923c; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 191" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="604"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #76923c 1pt solid; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191" valign="top" width="602"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#ffffff"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;INDIRECT&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：傳回文字串所指定的參照位址。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-border-top-alt: solid #76923c 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 191" valign="top" width="602"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;INDIRECT(ref_text,[a1])&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;ref_text&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：單一儲存格的參照位址，其中包含&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;A1&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;欄名列號表示法、&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;R1C1&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;欄名列號表示法、定義為參照位址的名稱，或定義為字串的儲存格參照位址。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;a1:&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;指定&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;ref_text&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;儲存格中所包含參照位址類型的邏輯值。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;MATCH&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'"&gt;&lt;font face="新細明體"&gt;：&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span lang="EN-US"&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342679.aspx"&gt;&lt;span style="line-height: 20pt; font-family: "&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#0000ff"&gt;&lt;u&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342679.aspx&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #76923c 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-border-insideh: 1.0pt solid #76923c; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 191; mso-border-insidev: 1.0pt solid #76923c; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 191" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="598"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #76923c 1pt solid; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#ffffff"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;MATCH&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：搜尋某儲存格範圍內的指定項目，然後再傳回該項目在範圍內的相對位置。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-border-top-alt: solid #76923c 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;MATCH(lookup_value, lookup_array, [match_type])&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;lookup_value&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：在&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; lookup_array &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;中尋找比對的值。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;lookup_array&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：要搜尋的儲存格範圍。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;match_type&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：這是一個數字，其值有三種可能：&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;(&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;預設值為&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt; 1)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;1 &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;或省略：找到等於或僅次於&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; lookup_value &lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;的值。&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;lookup_array &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;引數內的值必須以遞增次序排列。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;0&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：找第一個完全等於&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt"&gt;&lt;font face="Century Gothic"&gt; &lt;span lang="EN-US"&gt;lookup_value &lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;的比較值。&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;lookup_array &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;引數內的值可以依任意次序排列。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;-1&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：找到等於或大於&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; lookup_value &lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;的最小值。&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;lookup_array &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;引數內的值必須以遞減次序排序。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#000000"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;ADDRESS&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'"&gt;&lt;font face="新細明體"&gt;：&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: " lang="EN-US"&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342163.aspx"&gt;&lt;span style="color: "&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#0000ff"&gt;&lt;u&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342163.aspx&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #76923c 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-border-insideh: 1.0pt solid #76923c; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 191; mso-border-insidev: 1.0pt solid #76923c; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 191" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="598"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #76923c 1pt solid; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt" color="#ffffff"&gt;在已知指定列和欄號下，取得工作表中儲存格的位址。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-border-top-alt: solid #76923c 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;row_num&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：指定要用在儲存格參照中之列號的數值。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;column_num&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：指定要用在儲存格參照中之欄號的數值。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;abs_num&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：可省略。指定要傳回之參照類型的數值。傳回此參照類型如下：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;1&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;或省略：絕對儲存格參照；&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;2&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：列：絕對；欄：相對；&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;3&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：列：相對；欄：絕對；&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;4&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：相對參照&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#000000"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-8736108586753944782?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/S7NTpgEqYPQgLc2jzPMHN0r-3Ko/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/S7NTpgEqYPQgLc2jzPMHN0r-3Ko/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/S7NTpgEqYPQgLc2jzPMHN0r-3Ko/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/S7NTpgEqYPQgLc2jzPMHN0r-3Ko/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/ykCDmlj1VyU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/8736108586753944782/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/excel_6379.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/8736108586753944782?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/8736108586753944782?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/ykCDmlj1VyU/excel_6379.html" title="Excel-查詢數列最大值的位置" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-I115RJ6G9PU/TyjFulRWWSI/AAAAAAAANZ8/oZPpeGsDHBM/s72-c/image%25255B3%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/excel_6379.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0IFRnk4fyp7ImA9WhRUGUQ.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-626129938093289515</id><published>2012-01-31T00:45:00.001-08:00</published><updated>2012-01-31T00:45:17.737-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-31T00:45:17.737-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-計算各月的平均(陣列公式)</title><content type="html">&lt;p&gt;在 Excel 的工作表中有個日期和數量的報表，如果想要摘要依月份計算數量的平均，該如何處理？(參考下圖)&lt;/p&gt; &lt;p&gt;選取儲存格A1:B26，按一下&lt;strong&gt;&lt;em&gt; Ctrl+Shift+F3 &lt;/em&gt;&lt;/strong&gt;鍵，定義名稱：日期、數量。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-0us5E7M0tKQ/TyeqHPDeA3I/AAAAAAAANZc/hkl0yeo8B-A/image%25255B3%25255D.png?imgmax=800" width="378" height="603"&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【使用陣列公式】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;儲存格E2：{=AVERAGE(IF(MONTH(日期)=ROW(1:1),數量,FALSE))}&lt;/p&gt; &lt;p&gt;這是陣列公式，輸入完成要按&lt;strong&gt;&lt;em&gt; Ctrl+Shift+Enter &lt;/em&gt;&lt;/strong&gt;鍵。&lt;/p&gt; &lt;p&gt;複製儲存格E2，貼至儲存格E2:E13。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;MONTH(日期)=ROW(1:1)&lt;/em&gt;&lt;/strong&gt;：判斷日期中的月份是否為1(ROW(1:1)=1)，而ROW(1:1)往下複製會變為ROW(2:2)=2，…。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;IF &lt;/em&gt;&lt;/strong&gt;函數中的參數 &lt;strong&gt;&lt;em&gt;FALSE&lt;/em&gt;&lt;/strong&gt;，請勿以0或空白取代，否則所有的0都會列入&lt;strong&gt;&lt;em&gt; AVERAGE &lt;/em&gt;&lt;/strong&gt;函數來平均。&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【使用SUMPRODUCT函數】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;儲存格E2：=SUMPRODUCT((MONTH(日期)=ROW(1:1))*數量)/SUMPRODUCT(--(MONTH(日期)=ROW(1:1)))&lt;/p&gt; &lt;p&gt;複製儲存格E2，貼至儲存格E2:E13。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;SUMPRODUCT &lt;/em&gt;&lt;/strong&gt;函數中使用「--」運算，是為了將&lt;strong&gt;&lt;em&gt; True/False&lt;/em&gt;&lt;/strong&gt; 陣列轉換為&lt;strong&gt;&lt;em&gt; 1/0 &lt;/em&gt;&lt;/strong&gt;陣列，數值才能用來計算。&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【補充說明】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;關於函數的詳細說明，可參考微軟網站：&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#000000"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;SUMPRODUCT&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'"&gt;&lt;font face="新細明體"&gt;：&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span lang="EN-US"&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342935.aspx"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#0000ff"&gt;&lt;u&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342935.aspx&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #76923c 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-border-insideh: 1.0pt solid #76923c; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 191; mso-border-insidev: 1.0pt solid #76923c; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 191" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="598"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #76923c 1pt solid; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#ffffff"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;SUMPRODUCT&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：傳回各陣列中所有對應元素乘積的總和。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-border-top-alt: solid #76923c 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;SUMPRODUCT(array1, [array2], [array3], ...)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;array1&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：要求對應元素乘積和的第一個陣列引數。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;array2, array3,...&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：要求對應元素乘積和的第&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; 2 &lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;個到第&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; 255 &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;個陣列引數。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;註：各陣列必須有相同的維度&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;(&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;相同的列數，相同的欄數&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;)&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;。否則會傳回錯誤值&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;#VALUE!&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;。並且會將所有非數值資料的陣列元素當成&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;0&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;來處理。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-626129938093289515?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/3lBuHfvKvD2X2Y_3v5cbrY0lYk0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3lBuHfvKvD2X2Y_3v5cbrY0lYk0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/3lBuHfvKvD2X2Y_3v5cbrY0lYk0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3lBuHfvKvD2X2Y_3v5cbrY0lYk0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/HBNwhq_dXfU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/626129938093289515/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/excel_9734.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/626129938093289515?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/626129938093289515?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/HBNwhq_dXfU/excel_9734.html" title="Excel-計算各月的平均(陣列公式)" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/-0us5E7M0tKQ/TyeqHPDeA3I/AAAAAAAANZc/hkl0yeo8B-A/s72-c/image%25255B3%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/excel_9734.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUIESHY-fSp7ImA9WhRUGUQ.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-6159969545154632415</id><published>2012-01-31T00:11:00.001-08:00</published><updated>2012-01-31T00:11:49.855-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-31T00:11:49.855-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-計算最近幾次成績的平均</title><content type="html">&lt;p&gt;在 Excel 的工作表中，在A欄中會不斷的輸入考試成績，如果只想計算最近幾次的平均，該如何處理？(參考下圖)&lt;/p&gt; &lt;p&gt;為了便於理解公式，先選取A欄，按一下&lt;strong&gt;&lt;em&gt; Ctrl+Shift+F3 &lt;/em&gt;&lt;/strong&gt;鍵，勾選「頂端列」，將A欄定義名稱為「成績」。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-y82kUJGQyfE/TyeiQeiKjKI/AAAAAAAANYs/mfhhA93xofE/image3.png?imgmax=800" width="317" height="490"&gt;&lt;/p&gt; &lt;p&gt;要小心特別的狀況，如果輸入的成績數量少於要求的次數會出現錯誤訊息。&lt;/p&gt; &lt;p&gt;所以公式定為：&lt;/p&gt; &lt;p&gt;儲存格D2：=AVERAGE(OFFSET($A$2,COUNTA(成績)-MIN(COUNTA(成績),C2),0,MIN(COUNTA(成績),C2),1))&lt;/p&gt; &lt;p&gt;複製儲存格D2，往下各列複製。&lt;/p&gt; &lt;p&gt;因為成績會不斷的輸入，所以使用&lt;strong&gt;&lt;em&gt; OFFSET&lt;/em&gt;&lt;/strong&gt; 函數來取這個動態的位址。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;MIN(COUNTA(成績),C2)&lt;/em&gt;&lt;/strong&gt;：將要求的次數(儲存格C2)和成績欄中所輸入成績的個數取最小值，如此可以避免輸入的成績數量少於要求的次數而出現錯誤訊息。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;COUNTA(成績)-MIN(COUNTA(成績),C2)&lt;/em&gt;&lt;/strong&gt;：取得&lt;strong&gt;&lt;u&gt;不要&lt;/u&gt;&lt;/strong&gt;計算平均的儲存格個數。&lt;/p&gt; &lt;p&gt;以上二式代入&lt;strong&gt;&lt;em&gt; OFFSET &lt;/em&gt;&lt;/strong&gt;函數，即可求得動態位置。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-j70QnhBYA7A/TyeiQ-UbRbI/AAAAAAAANY0/xf6XDpo-N1M/image7.png?imgmax=800" width="317" height="490"&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【補充說明】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;關於函數的詳細說明，可參考微軟網站：&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#000000"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;OFFSET&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'"&gt;&lt;font face="新細明體"&gt;：&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span lang="EN-US"&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342739.aspx"&gt;&lt;span style="line-height: 20pt; font-family: "&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#0000ff"&gt;&lt;u&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342739.aspx&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #76923c 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-border-insideh: 1.0pt solid #76923c; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 191; mso-border-insidev: 1.0pt solid #76923c; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 191" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="598"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #76923c 1pt solid; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#ffffff"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;OFFSET &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt; mso-themecolor: background1"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;函數：傳回根據所指定的儲存格位址、列距及欄距而算出的參照位址。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt; mso-themecolor: background1" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #76923c 1pt solid; border-left: #76923c 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #76923c 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 191; mso-border-top-alt: solid #76923c 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 191" valign="top" width="598"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;OFFSET(reference, rows, cols, [height], [width])&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;Reference&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：用以計算位移的起始參照位址。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;Rows&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：左上角儲存格要往上或往下參照的列數。&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;Rows&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;可以是正數&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;(&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;表示在起始參照位址下方&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;)&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;或負數&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;(&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;表示在起始參照位址上方&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;)&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;Cols&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：左上角儲存格要往左或往右參照的欄數。&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;Cols &lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;可以是正數&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;(&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;表示在起始參照位址右方&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;)&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;或負數&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;(&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;表示在起始參照位址左方&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;)&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;Height&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：所傳回參照位址的高度&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; (&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;以列數為單位&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;)&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;。&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;Height &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;必須是正數。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-pagination: widow-orphan" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;Width&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;：所傳回參照位址的寬度&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt; (&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;以欄數為單位&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;)&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;。&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;Width &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-hansi-font-family: 'Century Gothic'; mso-font-kerning: 0pt"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;必須是正數。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-fareast-font-family: 新細明體; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#000000"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-6159969545154632415?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2PBu7pxRDv75HGA3MZbY_YoJUzo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2PBu7pxRDv75HGA3MZbY_YoJUzo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2PBu7pxRDv75HGA3MZbY_YoJUzo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2PBu7pxRDv75HGA3MZbY_YoJUzo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/ikVMv-hk5Pk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/6159969545154632415/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/excel_31.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/6159969545154632415?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/6159969545154632415?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/ikVMv-hk5Pk/excel_31.html" title="Excel-計算最近幾次成績的平均" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh3.ggpht.com/-y82kUJGQyfE/TyeiQeiKjKI/AAAAAAAANYs/mfhhA93xofE/s72-c/image3.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/excel_31.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D08HR3s6eSp7ImA9WhRUGUQ.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-2153171967262733021</id><published>2012-01-30T23:43:00.001-08:00</published><updated>2012-01-30T23:43:56.511-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-30T23:43:56.511-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-以英文顯示日期中的月份</title><content type="html">&lt;p&gt;在 Excel 有非常多關於日期時間的格式設定，有人問到如果想要將日期中的月份以英文字來表示該如何處理？(參考下圖)&lt;/p&gt; &lt;p&gt;儲存格B2：=TEXT(A2,"mmmm")&lt;/p&gt; &lt;p&gt;複製儲存格B2，往下各列貼上。&lt;/p&gt; &lt;p&gt;透過&lt;strong&gt;&lt;em&gt; TEXT &lt;/em&gt;&lt;/strong&gt;函數，將參數設定為「"mmmm"」，即可顯示英文字的月份，例如一月為 January、二月為 February 等。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-95p7w9ZRrUU/TyebuGadu2I/AAAAAAAANXs/_qDnUl86umg/image%25255B3%25255D.png?imgmax=800" width="241" height="510"&gt;&lt;/p&gt; &lt;p&gt;如果你是要在原日期儲存格中只想顯示月份，則可以在[儲存格格式]對話框中的「數值」標籤下，自訂格式為「"mmmm"」。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-SKS3yOTu9bM/TyebuoiVlMI/AAAAAAAANXw/k9B4kvIQ5D8/image%25255B6%25255D.png?imgmax=800" width="575" height="441"&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【補充說明】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;關於函數的詳細說明，可參考微軟網站：&lt;/p&gt; &lt;p&gt;&lt;font color="#000000"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;TEXT&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'"&gt;&lt;font face="新細明體"&gt;：&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span lang="EN-US"&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/HP010342952.aspx"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#0000ff"&gt;&lt;u&gt;http://office.microsoft.com/zh-tw/excel-help/HP010342952.aspx&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;table style="border-bottom: medium none; border-left: medium none; line-height: normal; border-collapse: collapse; border-top: medium none; border-right: medium none; mso-border-alt: solid #4f6228 1.0pt; mso-border-themecolor: accent3; mso-border-themeshade: 128; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt; mso-border-insideh: 1.0pt solid #4f6228; mso-border-insideh-themecolor: accent3; mso-border-insideh-themeshade: 128; mso-border-insidev: 1.0pt solid #4f6228; mso-border-insidev-themecolor: accent3; mso-border-insidev-themeshade: 128" class="MsoTableMediumShading1Accent3" border="1" cellspacing="0" cellpadding="0"&gt; &lt;tbody&gt; &lt;tr style="mso-yfti-irow: -1; mso-yfti-firstrow: yes"&gt; &lt;td style="border-bottom: #4f6228 1pt solid; border-left: #4f6228 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #4f6228; border-top: #4f6228 1pt solid; border-right: #4f6228 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 128; mso-background-themecolor: accent3; mso-background-themeshade: 128" valign="top" width="646"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-yfti-cnfc: 5" class="MsoNormal"&gt;&lt;font color="#ffffff"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-themecolor: background1; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;TEXT&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'; mso-themecolor: background1; mso-bidi-font-weight: bold"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：將數值轉換成文字，並使用特殊格式字串來指定顯示的格式。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-themecolor: background1; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="mso-yfti-irow: 0; mso-yfti-lastrow: yes"&gt; &lt;td style="border-bottom: #4f6228 1pt solid; border-left: #4f6228 1pt solid; padding-bottom: 0cm; padding-left: 5.4pt; padding-right: 5.4pt; background: #e6eed5; border-top: medium none; border-right: #4f6228 1pt solid; padding-top: 0cm; mso-border-themecolor: accent3; mso-border-themeshade: 128; mso-background-themecolor: accent3; mso-border-top-alt: solid #4f6228 1.0pt; mso-border-top-themecolor: accent3; mso-border-top-themeshade: 128; mso-background-themetint: 63" valign="top" width="646"&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-yfti-cnfc: 68" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-weight: bold"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;語法：&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;TEXT(value&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-weight: bold"&gt;&lt;font face="新細明體"&gt;，&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;format_text)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-yfti-cnfc: 68" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;vlue&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-weight: bold"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;：可以是數值、一個會傳回數值的或者是一個參照到含有數值資料的儲存格位址。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt; mso-yfti-cnfc: 68" class="MsoNormal"&gt;&lt;font color="#003300"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt"&gt;format_text&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font style="font-size: 10pt"&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-weight: bold"&gt;&lt;font face="新細明體"&gt;：一個以雙引號括住並格式化為文字字串的數值，例如&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;"m/d/yyyy"&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-weight: bold"&gt;&lt;font face="新細明體"&gt;或&lt;/font&gt;&lt;/span&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;"#,##0.00"&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-ascii-font-family: 'Century Gothic'; mso-fareast-font-family: 新細明體; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'Century Gothic'; mso-bidi-font-weight: bold"&gt;&lt;font face="新細明體"&gt;&lt;font style="font-size: 10pt"&gt;。&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="line-height: 20pt; font-family: ; color: ; mso-bidi-font-family: arial; mso-bidi-font-weight: bold" lang="EN-US"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p style="line-height: 24pt; margin: 0cm 0cm 0pt" class="MsoNormal"&gt;&lt;span style="line-height: 20pt; font-family: ; mso-bidi-font-family: arial" lang="EN-US"&gt;&lt;font face="Century Gothic"&gt;&lt;font style="font-size: 10pt" color="#000000"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-2153171967262733021?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Y9bQuJvXwgrWLTPUeGJCFrC5Cns/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Y9bQuJvXwgrWLTPUeGJCFrC5Cns/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Y9bQuJvXwgrWLTPUeGJCFrC5Cns/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Y9bQuJvXwgrWLTPUeGJCFrC5Cns/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/LgGYoEgmUkg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/2153171967262733021/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/excel_30.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/2153171967262733021?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/2153171967262733021?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/LgGYoEgmUkg/excel_30.html" title="Excel-以英文顯示日期中的月份" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-95p7w9ZRrUU/TyebuGadu2I/AAAAAAAANXs/_qDnUl86umg/s72-c/image%25255B3%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/excel_30.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0ADQ3o_eyp7ImA9WhRUGE0.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-3396916367666371486</id><published>2012-01-28T18:56:00.001-08:00</published><updated>2012-01-28T18:56:12.443-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-28T18:56:12.443-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="生活資訊" /><title>自然人憑證-開始使用電子發票</title><content type="html">&lt;p&gt;如果你有自然人憑證，現在可以配合電子發票的推廣，將發票電子化，買東西時可以大聲說不要印紙本發票。你要先到財政部電子發票整合服務平台做一些設定，將來電子發票才能記錄到你的帳戶之下。&lt;/p&gt; &lt;p&gt;&lt;a title="財政部電子發票整合服務平台, E-Invoice Platform" href="https://www.einvoice.nat.gov.tw/wSite/mp?mp=1"&gt;財政部電子發票整合服務平台&lt;/a&gt;：&lt;a title="https://www.einvoice.nat.gov.tw/wSite/mp?mp=1" href="https://www.einvoice.nat.gov.tw/wSite/mp?mp=1"&gt;https://www.einvoice.nat.gov.tw/wSite/mp?mp=1&lt;/a&gt;&lt;/p&gt; &lt;p&gt;要以自然人憑證登入(第一次使用要先註冊)：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-bgBB3jqNKd8/TyS1OlwmPiI/AAAAAAAANVc/pBE6Lb59fCE/image%25255B4%25255D.png?imgmax=800" width="622" height="350"&gt;&lt;/p&gt; &lt;p&gt;這個平台能做的事如下結構：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-5tRzsyLOqBs/TyS1PHyW47I/AAAAAAAANVg/fuflXPEaMWo/image%25255B13%25255D.png?imgmax=800" width="156" height="292"&gt;&lt;/p&gt; &lt;p&gt;首先你要將你手邊的載具歸到你的帳戶，例如各種含有晶片的信用卡、會員卡、金融卡等，如果是悠遊卡則可以到 7-11 的 iBon 機器上進行歸戶(記得要帶自然人憑證去)。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-Md1GS7UqryQ/TyS1PrGygrI/AAAAAAAANVs/l2PdDnatZ5Q/image%25255B33%25255D.png?imgmax=800" width="398" height="252"&gt;&lt;/p&gt; &lt;p&gt;你可以將自己和家人的各種「不具名」的載具(像別人的信用卡就不行)集合在你的帳戶中：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-KS5U06pgqJc/TyS1Qou6L_I/AAAAAAAANVw/0xoWowgRTKE/image%25255B38%25255D.png?imgmax=800" width="622" height="396"&gt;&lt;/p&gt; &lt;p&gt;如果你有消費記錄了，就可以查詢各個載具的消費明細。在「查詢與捐贈」中，先選一個載具名稱：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-QllGhMM4Dhs/TyS1RGVUN5I/AAAAAAAANV4/AZy-foYBt4M/image%25255B19%25255D.png?imgmax=800" width="622" height="383"&gt;&lt;/p&gt; &lt;p&gt;你可以選取要查詢的發票月份，按一下「查詢」，即會列出所有發票：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-ZP7FESQHuZE/TyS1R0b8jTI/AAAAAAAANWA/XT63jeAJYKk/image%25255B24%25255D.png?imgmax=800" width="622" height="488"&gt;&lt;/p&gt; &lt;p&gt;挑選一張發票，按一下「查看明細」，還可以看你消費了那些內容：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-NqTZNTqQicE/TyS1Sfmeo5I/AAAAAAAANWI/cNDjpyPE2iU/image%25255B29%25255D.png?imgmax=800" width="622" height="298"&gt;&lt;/p&gt; &lt;p&gt;這個平台會幫你對發票，如果中獎了還可以直接將獎金入到你指定的金融帳戶中。當然，你也可以在平台上設定捐贈給某些單位。現在主要的問題是提供電子發票的店家還不夠多，而且店家還是會列印紙本的消費明細給你(應該可以選擇是否列印吧？)。如果你沒有向店家指定「不列印紙本發票」，店家還是會列印發票給你(該發票資料不會進到你的平台帳戶中)，所以消費時要特別注意！&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-3396916367666371486?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/zs6mlPgriJOQNX8F5ixGNYxJab4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zs6mlPgriJOQNX8F5ixGNYxJab4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/zs6mlPgriJOQNX8F5ixGNYxJab4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zs6mlPgriJOQNX8F5ixGNYxJab4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/MCOy9eYH94E" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/3396916367666371486/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/blog-post_3384.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/3396916367666371486?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/3396916367666371486?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/MCOy9eYH94E/blog-post_3384.html" title="自然人憑證-開始使用電子發票" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-bgBB3jqNKd8/TyS1OlwmPiI/AAAAAAAANVc/pBE6Lb59fCE/s72-c/image%25255B4%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/blog-post_3384.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MGQHY4fyp7ImA9WhRUGE0.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-8056665364692634125</id><published>2012-01-28T17:43:00.001-08:00</published><updated>2012-01-28T17:43:41.837-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-28T17:43:41.837-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="生活資訊" /><title>自然人憑證-查詢個人健保資料</title><content type="html">&lt;p&gt;如果你已經有自然人憑證，你拿它來做什麼？如何能利用網路取代馬路，不臨櫃能做那些事？例如你想查詢個人健保相關資料、列印繳款單、繳費證明及申請無照片健保IC卡等，可以到這個網頁：&lt;/p&gt; &lt;p&gt;&lt;a title="https://eservice.nhi.gov.tw/Personal1/System/Login.aspx" href="https://eservice.nhi.gov.tw/Personal1/System/Login.aspx"&gt;https://eservice.nhi.gov.tw/Personal1/System/Login.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;以自然人憑證登入系統，可使用下列功能：&lt;br&gt;1. 查詢個人未繳保險費情形與列印繳款單&lt;br&gt;2. 查詢及列印個人投、退保資料&lt;br&gt;3. 查詢及列印依附眷屬投、退保資料&lt;br&gt;4. 申請及查詢電子繳款單&lt;br&gt;5. 申請及列印繳納保險費證明&lt;br&gt;6. 申請無照片健保IC卡  &lt;p&gt;系統會要求安裝 ActiveX 元件，裝好之後才能使用：  &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-9qQwGoFcq1Q/TySkQFboQjI/AAAAAAAANSs/3fhXlD8f8Uw/image%25255B14%25255D.png?imgmax=800" width="622" height="337"&gt;&lt;/p&gt; &lt;p&gt;試著查詢個人相關資料，從一開始加入健保起的資料都有：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-KsNVjGfPJBU/TySkQm0esdI/AAAAAAAANS0/XMl2ZPB11ac/image%25255B19%25255D.png?imgmax=800" width="622" height="377"&gt;&lt;/p&gt; &lt;p&gt;如果你想查詢個人就醫紀錄明細 ，可以到以下網頁：&lt;/p&gt; &lt;p&gt;&lt;a title="https://eservice.nhi.gov.tw/PERSONALMED/System/Login.aspx" href="https://eservice.nhi.gov.tw/PERSONALMED/System/Login.aspx"&gt;https://eservice.nhi.gov.tw/PERSONALMED/System/Login.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;也是利用自然人憑證登入：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-LPozpeo4my8/TySkRxC6MMI/AAAAAAAANS4/jhujzw753xA/image%25255B9%25255D.png?imgmax=800" width="622" height="416"&gt;&lt;/p&gt; &lt;p&gt;它會列出你最近三個月(指系統提供的最近三個月，例如我在1月底查，結果查到去年9月到11月的資料。)的就醫紀錄。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-ZNWPKOdly-E/TySkSYYsnhI/AAAAAAAANTE/XBDgjKw15tE/image%25255B4%25255D.png?imgmax=800" width="622" height="329"&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-8056665364692634125?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/x4hve2F2BvATrEClY6Q5qo6xiWw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/x4hve2F2BvATrEClY6Q5qo6xiWw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/x4hve2F2BvATrEClY6Q5qo6xiWw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/x4hve2F2BvATrEClY6Q5qo6xiWw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/u6xS20UzHuE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/8056665364692634125/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/blog-post_28.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/8056665364692634125?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/8056665364692634125?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/u6xS20UzHuE/blog-post_28.html" title="自然人憑證-查詢個人健保資料" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-9qQwGoFcq1Q/TySkQFboQjI/AAAAAAAANSs/3fhXlD8f8Uw/s72-c/image%25255B14%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/blog-post_28.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUcAQH45fSp7ImA9WhRUF08.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-3332514083766017905</id><published>2012-01-27T21:04:00.001-08:00</published><updated>2012-01-27T21:04:01.025-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-27T21:04:01.025-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="講義資料" /><title>Excel-轉換含小數的二進位數為十進位數(陣列)</title><content type="html">&lt;p&gt;在 Excel 中如果想要將二進位數、八進位、十六進位數轉換為十進位數，可以利用以下的相關函數：&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/redir/HP010342204.aspx?CTT=5&amp;amp;origin=HP010342474"&gt;BIN2DEC 函數&lt;/a&gt;：會將二進位數字轉換成十進位  &lt;li&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/redir/HP010342205.aspx?CTT=5&amp;amp;origin=HP010342474"&gt;BIN2HEX 函數&lt;/a&gt;：會將二進位數字轉換成十六進位  &lt;li&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/redir/HP010342206.aspx?CTT=5&amp;amp;origin=HP010342474"&gt;BIN2OCT 函數&lt;/a&gt;：會將二進位數字轉換成八進位  &lt;li&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/redir/HP010342412.aspx?CTT=5&amp;amp;origin=HP010342474"&gt;DEC2BIN 函數&lt;/a&gt;：會將十進位數字轉換成二進位  &lt;li&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/redir/HP010342413.aspx?CTT=5&amp;amp;origin=HP010342474"&gt;DEC2HEX 函數&lt;/a&gt;：會將十進位數字轉換成十六進位  &lt;li&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/redir/HP010342414.aspx?CTT=5&amp;amp;origin=HP010342474"&gt;DEC2OCT 函數&lt;/a&gt;：會將十進位數字轉換成八進位  &lt;li&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/redir/HP010342567.aspx?CTT=5&amp;amp;origin=HP010342474"&gt;HEX2BIN 函數&lt;/a&gt;：會將十六進位數字轉換成二進位  &lt;li&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/redir/HP010342568.aspx?CTT=5&amp;amp;origin=HP010342474"&gt;HEX2DEC 函數&lt;/a&gt;：會將十六進位數字轉換成十進位  &lt;li&gt;&lt;a href="http://office.microsoft.com/zh-tw/excel-help/redir/HP010342569.aspx?CTT=5&amp;amp;origin=HP010342474"&gt;HEX2OCT 函數&lt;/a&gt;：會將十六進位數字轉換成八進位&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;但是，如果要轉換含小數的二進位數為十進制數，則會產生「#NUM!」錯誤訊息。這次來練習如何達成轉換工作。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【模擬轉換過程】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;(1) 儲存格B3:B14分別表示2^(-1)、2^(-2)、2^(-3)、2^(-4)、2^(-5)、…。&lt;/p&gt; &lt;p&gt;(2) 儲存格C3：=MID($B$1,ROW(3:3),1)，複製儲存格C3，貼至儲存格C3:C14。取出小數點後的每一位數字(1或0)&lt;/p&gt; &lt;p&gt;(3) D欄為B欄和C欄的相乘積。&lt;/p&gt; &lt;p&gt;(4) 儲存格D15：{=SUM(IFERROR(D3:D14,0))}，這是陣列公式，輸入完成要按&lt;strong&gt;&lt;em&gt; Ctrl+Shift+Enter &lt;/em&gt;&lt;/strong&gt;鍵。&lt;/p&gt; &lt;p&gt;公式是要將非錯誤值的儲存格相加，透過 &lt;strong&gt;&lt;em&gt;IFERROR&lt;/em&gt;&lt;/strong&gt; 函數來判斷若為錯誤值則視為0。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-D2xu7_r8r_8/TyOBv_9qqUI/AAAAAAAANRc/r_qd_oLBtLQ/image%25255B3%25255D.png?imgmax=800" width="404" height="453"&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;【以陣列公式運算】&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;如果以陣列公式來處理，則只要一個公式即可做完上述所有的動作。&lt;/p&gt; &lt;p&gt;{=SUM(MID(B1,ROW(INDIRECT("3:"&amp;amp;LEN(B1))),1)*1/2^(ROW(INDIRECT("1:"&amp;amp;LEN(B1)-2))))}&lt;/p&gt; &lt;p&gt;這是陣列公式，輸入完成要按&lt;strong&gt;&lt;em&gt; Ctrl+Shift+Enter &lt;/em&gt;&lt;/strong&gt;鍵。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;LEN(B1)&lt;/em&gt;&lt;/strong&gt;：找出儲存格B1中二進位數的字元數(包含「0.」)，公式自動判斷二進位數的長度。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;ROW(INDIRECT("3:"&amp;amp;LEN(B1)))&lt;/em&gt;&lt;/strong&gt;：利用&lt;strong&gt;&lt;em&gt; INDIRECT &lt;/em&gt;&lt;/strong&gt;函數來轉換為位址，本例可得ROW(3:12)，在陣列公式中代表3, 4, 5…, 12。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;MID(B1,ROW(INDIRECT("3:"&amp;amp;LEN(B1))),1)&lt;/em&gt;&lt;/strong&gt;：取得儲存格B1中的第3個字至最後的每個字元(不包含「0.」)，，本例為「1100110011」。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;ROW(INDIRECT("1:"&amp;amp;LEN(B1)-2))&lt;/em&gt;&lt;/strong&gt;：利用&lt;strong&gt;&lt;em&gt; INDIRECT &lt;/em&gt;&lt;/strong&gt;函數來轉換為位址，本例可得ROW(1:10)，在陣列公式中代表1, 2, 3, …, 10。&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;1/2^(ROW(INDIRECT("1:"&amp;amp;LEN(B1)-2)))&lt;/em&gt;&lt;/strong&gt;：本例可得1/2, 1/4, 1/8, …, 1/(2)^10。&lt;/p&gt; &lt;p&gt;將上述二式相乘後加總即為答案。&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-3332514083766017905?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/q55KHnX96ijYbP0WgexWvNr1WEI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q55KHnX96ijYbP0WgexWvNr1WEI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/q55KHnX96ijYbP0WgexWvNr1WEI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q55KHnX96ijYbP0WgexWvNr1WEI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/z39Ht9lqhIU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/3332514083766017905/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/excel_27.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/3332514083766017905?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/3332514083766017905?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/z39Ht9lqhIU/excel_27.html" title="Excel-轉換含小數的二進位數為十進位數(陣列)" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-D2xu7_r8r_8/TyOBv_9qqUI/AAAAAAAANRc/r_qd_oLBtLQ/s72-c/image%25255B3%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/excel_27.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkYFR306cSp7ImA9WhRUFk4.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-4684757953159066091</id><published>2012-01-26T19:15:00.001-08:00</published><updated>2012-01-26T19:15:16.319-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-26T19:15:16.319-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="趣味話題" /><title>有趣的Hello TAIWAN(臺灣)</title><content type="html">&lt;p&gt;有人給我看了一個有趣且富創意的LOGO，可能是中國大陸人設計的(不確定)。(我從別人相機翻拍下來的)&lt;/p&gt; &lt;p&gt;橫看是 「HELLO TAIWAN」：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-_oBvpiqHEI4/TyIWwCyDJBI/AAAAAAAANQs/eEd1dtH4wsw/111%25255B40%25255D.jpg?imgmax=800" width="300" height="176"&gt;&lt;/p&gt; &lt;p&gt;直看是「臺灣」：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-DiM-pY77Edw/TyIWw7GSr-I/AAAAAAAANQw/64sW6eyDXkg/222%25255B31%25255D.jpg?imgmax=800" width="176" height="288"&gt;&lt;/p&gt; &lt;p&gt;我有嘗試以 Google 的以圖找圖來看看出處為何，但是沒成功。&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-4684757953159066091?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/tdapkma0-7CMrl4WP2wFToyBazY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tdapkma0-7CMrl4WP2wFToyBazY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/tdapkma0-7CMrl4WP2wFToyBazY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tdapkma0-7CMrl4WP2wFToyBazY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/SJ5X-JnWsmY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/4684757953159066091/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/hello-taiwan.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/4684757953159066091?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/4684757953159066091?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/SJ5X-JnWsmY/hello-taiwan.html" title="有趣的Hello TAIWAN(臺灣)" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/-_oBvpiqHEI4/TyIWwCyDJBI/AAAAAAAANQs/eEd1dtH4wsw/s72-c/111%25255B40%25255D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/hello-taiwan.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYFRXc5fip7ImA9WhRUFUQ.&quot;"><id>tag:blogger.com,1999:blog-5044666765165121284.post-7733606659284453763</id><published>2012-01-26T08:58:00.001-08:00</published><updated>2012-01-26T08:58:34.926-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-26T08:58:34.926-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="旅遊資訊" /><title>台南虎頭埤</title><content type="html">&lt;p&gt;過年期間那裡踏青好呢？今年選擇了去過好幾次的台南新化－虎頭埤風景區。&lt;/p&gt; &lt;p&gt;在其官方網頁中(&lt;a href="http://htp.tainan.gov.tw/main.php"&gt;http://htp.tainan.gov.tw/main.php&lt;/a&gt;)介紹到：台灣第一水庫虎頭埤水庫建於清道光二十六年（西元一八四六年），因山勢形狀如虎頭聳歭而得名，沿岸最高處為70公尺(位於青年活動中心北側山頭)，埤面水最深約40公尺，背山面水，風景秀麗，西元1954年由台南縣文獻委員會選定「虎埤泛月」為「南瀛八大景」之一，亦曾創「台灣十二名勝」之一，有「小日月潭」之稱。&lt;/p&gt; &lt;p&gt;交通路線圖：(資料來源：虎頭埤風景區 &lt;a href="http://htp.tainan.gov.tw/main.php"&gt;http://htp.tainan.gov.tw/main.php&lt;/a&gt;)&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-e_FYVgn6jGs/TyGGD8qfnvI/AAAAAAAANMM/1KYnVsFBGQ0/jt%25255B8%25255D.jpg?imgmax=800" width="502" height="364"&gt;&lt;/p&gt; &lt;p&gt;在大門口外有租自行車的地方，可以騎自行車來環湖，也可以把車開進來，但我建議陡步是最好的。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-BO0JNdA-_50/TyGGEc68hSI/AAAAAAAANMQ/_n7HlAeh5a0/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;園區內可住宿、露營、烤肉，可以釣魚、搭遊船(腳踏船、造型龍踏船、太陽能船)，夏天還有滑水道可以玩。以下園區導覽圖取自虎頭埤風景區 &lt;a href="http://htp.tainan.gov.tw/main.php"&gt;http://htp.tainan.gov.tw/main.php&lt;/a&gt;。&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-soVjPxAvQRg/TyGGEzCT7kI/AAAAAAAANMY/QmnhD89yEdc/Image.jpg?imgmax=800" width="622" height="902"&gt;&lt;/p&gt; &lt;p&gt;園區內有環湖步道：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-bfZZZng-_JI/TyGGFm6REAI/AAAAAAAANMk/ycv1JRDPgaE/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;有木板步道：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-kbe6EKwxZ1M/TyGGGuenWTI/AAAAAAAANMo/_C5hs1jkFdQ/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;有石板步道：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-244gGw96vzQ/TyGGHPGYYGI/AAAAAAAANMw/k8PR0h710eM/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;有階梯：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-XNJtsIGWdJk/TyGGHsyqCFI/AAAAAAAANM4/L_SHE76kylM/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;一邊環湖，一邊拍下美麗湖光山色。園區美景渾然天成，人工整理的也是不錯：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-QDAKGDOj0K8/TyGGItJQ1MI/AAAAAAAANNA/LkF9qPr4GDk/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;天氣非常好，水中倒影非常漂亮：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-uqBOcjn4ISk/TyGGJ0LxHyI/AAAAAAAANNI/djAaeDpPzDQ/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-3llPnxnY8qM/TyGGKZR12yI/AAAAAAAANNQ/pIhZuAiKLzg/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh6.ggpht.com/-pyymtAJFnAM/TyGGLOe8WZI/AAAAAAAANNY/BRt-pf8SB5o/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh3.ggpht.com/-w6QiUXwOZwM/TyGGLrRLmWI/AAAAAAAANNg/q8U_y1_bVbQ/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-zNPsFDW6e9k/TyGGMB7TreI/AAAAAAAANNo/l-BtfVj-1Vk/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh5.ggpht.com/-VssfiWF0oos/TyGGM1L0PTI/AAAAAAAANNw/P1HdnyIxi9Y/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-49udXqtpHb4/TyGGNskAQaI/AAAAAAAANN8/oHoBSmoK8no/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;湖中央有吊橋、涼亭：&lt;/p&gt; &lt;p&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="" border="0" alt="" src="http://lh4.ggpht.com/-KW-UbhQ3rRY/TyGGOWSVHOI/AAAAAAAANOA/2u294uQAUeg/Image.jpg?imgmax=800" width="622" height="415"&gt;&lt;/p&gt; &lt;p&gt;在此漫步可以走上個一二小時，騎自行車也是不錯的，也適合野餐、烤肉活動。&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5044666765165121284-7733606659284453763?l=isstudent.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/UqItbqDrAOMvad5PepJXD637VAo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/UqItbqDrAOMvad5PepJXD637VAo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/UqItbqDrAOMvad5PepJXD637VAo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/UqItbqDrAOMvad5PepJXD637VAo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspotisstudent/~4/JkquYQ-O9Ao" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://isstudent.blogspot.com/feeds/7733606659284453763/comments/default" title="張貼意見" /><link rel="replies" type="text/html" href="http://isstudent.blogspot.com/2012/01/blog-post_2193.html#comment-form" title="0 個意見" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/7733606659284453763?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5044666765165121284/posts/default/7733606659284453763?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspotisstudent/~3/JkquYQ-O9Ao/blog-post_2193.html" title="台南虎頭埤" /><author><name>vincent</name><uri>http://www.blogger.com/profile/09588862628081959230</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/-e_FYVgn6jGs/TyGGD8qfnvI/AAAAAAAANMM/1KYnVsFBGQ0/s72-c/jt%25255B8%25255D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://isstudent.blogspot.com/2012/01/blog-post_2193.html</feedburner:origLink></entry></feed>

