興趣嗜好

跳至

首頁
34567...20

尾頁
   73


別墅

積分: 955


81#
發表於 11-11-1 22:03 |只看該作者
yanfaidaddy 發表於 11-10-21 01:46
回覆 stephen_tkk 的帖子

這個動作要用 vba 才能做到,如果想排序,
最少要按 autofilter drop down box 裡的 filter 選項。


別墅

積分: 955


82#
發表於 11-11-1 22:10 |只看該作者
本帖最後由 stephen_tkk 於 11-11-1 22:10 編輯
租一邊 發表於 11-10-31 13:06
想請教

我要整八個pie chart in excel 2003, system dafult 的 format 不合我心意,我怎樣可以format其中一 ...

yes, you can, right click the chart > chart type > custom types > user - defined > add > type the name and description ok

點評

租一邊    發表於 11-11-2 22:58


別墅

積分: 955


83#
發表於 11-11-1 22:10 |只看該作者
今日的題目是︰

How to use Transpose Formula to Transpose Data
如何用 Transpose 公式 調換數據位置
http://sites.google.com/site/exceltkk2/excel-tutorial/howtousetransposeformulatotransposedata

謝。


大宅

積分: 2154


84#
發表於 11-11-1 22:17 |只看該作者
Thanks, 好有用呀!


別墅

積分: 955


85#
發表於 11-11-3 22:56 |只看該作者
123win 發表於 11-11-1 22:17
Thanks, 好有用呀!
今日的題目是︰

How to view two worksheets in same workbook at same time
如何在同一時間檢閱同一活頁簿的兩個工作頁
http://sites.google.com/site/exceltkk2/excel-tutorial/howtoviewtwoworksheetsinsameworkbookatsametime

謝。


別墅

積分: 955


86#
發表於 11-11-6 21:34 |只看該作者
今日的題目是︰

Exercise - From Oct 31_11 To Nov 04_11
練習 - 由一一年十月三十一日 至 一一年十一月四日
http://sites.google.com/site/exceltkk2/excel-tutorial/exercise-fromoct3111tonov0411

謝。


別墅

積分: 955


87#
發表於 11-11-8 21:51 |只看該作者
今日的題目是︰

How to create Chart Custom Template in Excel 2010
如何在Excel 2010中製作自訂圖表類型
http://sites.google.com/site/exceltkk2/excel-tutorial/howtocreatechartcustomtemplateinexcel2010

謝。


洋房

積分: 59


88#
發表於 11-11-10 20:59 |只看該作者
good~~thx~~


複式洋房

積分: 181


89#
發表於 11-11-11 08:36 |只看該作者
如果我又幾十個同樣(format), 但係唔同IP o既 website
我可以用 web query import data 去 excel, 但係要insert 幾十次 x 2(因為毎個website 都有2 page asp table), 有冇方法可以一次過insert 入去!?
同埋佢d table 中間有D icon 但係就import 唔到, 估唔估到點解!?
Aatos baba


別墅

積分: 955


90#
發表於 11-11-15 22:38 |只看該作者
本帖最後由 stephen_tkk 於 11-11-15 22:39 編輯
yukaiwa 發表於 11-11-11 08:36
如果我又幾十個同樣(format), 但係唔同IP o既 website
我可以用 web query import data 去 excel, 但係要in ...

要寫 vba loop 一 loop 才可以做到。(大前題是網址的連結是有固的的 模式。)
1. 先在使用 web query import data 時使用錄製 macro 功能。
2. 選取 table 後停止錄製。
3. 把錄製好的程式加一些迴圈的程式。

未經收改前︰
Sub Macro2()

With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://hk.biz.yahoo.com/p/hk/ratio/index.html?s=0005", Destination:= _
Range("$A$5"))
.Name = "index.html?s=0005"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlSpecifiedTables
.WebFormatting = xlWebFormattingNone
.WebTables = "14"
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
Range("B11").Select
End Sub

收改後︰

Sub Macro2()

For i = 1 To 10
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://hk.biz.yahoo.com/p/hk/ratio/index.html?s=" & Format(i, "0000") & ".HK", Destination:= _
Range("$A$5"))
.Name = "index.html?s=" & Format(i, "0000") & ".HK"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlSpecifiedTables
.WebFormatting = xlWebFormattingNone
.WebTables = "14"
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
Next i

End Sub



別墅

積分: 955


91#
發表於 11-11-15 22:39 |只看該作者
今日的題目是︰

How to Auto Open other File once Excel File open
當Excel 檔案打開時如何自動開啓其他檔案
http://sites.google.com/site/exceltkk2/excel-tutorial/howtoautoopenotherfileonceexcelfileopen

謝。


別墅

積分: 955


92#
發表於 11-11-17 22:46 |只看該作者
今日的題目是︰

How to Change bar chart Gap width in Excel 2010

如何增加或減少棒型圖棒與棒之間的空間

謝。


別墅

積分: 955


93#
發表於 11-11-19 23:12 |只看該作者
今日的題目是︰

Weekly Summary 40 – From Nov 14_11 To Nov 18_11
每週總結 40 –由一一年十一月十四日至一一年十一月十八日
http://sites.google.com/site/exceltkk2/excel-tutorial/weeklysummary40%E2%80%93fromnov1411tonov1811

謝。


別墅

積分: 955


94#
發表於 11-11-22 22:18 |只看該作者
今日的題目是︰

How to fix the reference cell address - Indirect Formula
如何固定參巧儲存的位置 – Indirect 公式
http://sites.google.com/site/exceltkk2/excel-tutorial/howtofixthereferencecelladdress-indirectformula

謝。


別墅

積分: 955


95#
發表於 11-11-26 23:13 |只看該作者
今日的題目是︰

Weekly Summary 41 – From Nov 21_11 To Nov 25_11
每週總結41 – 由一一年十一月二十一日至一一年十一月二十五日
http://sites.google.com/site/exceltkk2/excel-tutorial/weeklysummary41%E2%80%93fromnov2111tonov2511

謝。


大宅

積分: 1333


96#
發表於 11-11-27 01:56 |只看該作者
thank for sharing...


別墅

積分: 955


97#
發表於 11-11-29 21:42 |只看該作者
vacation369 發表於 11-11-27 01:56
thank for sharing...
fine

今日的題目是︰

How to Separate Format of Positive and Negative Figure in bar Chart
如何可以把圖表的正負數據格式分開
http://sites.google.com/site/exceltkk2/excel-tutorial/howtoseparateformatofpositiveandnegativefigureinbarchart

謝。


複式洋房

積分: 181


98#
發表於 11-11-30 09:33 |只看該作者
stephen_tkk 發表於 11-11-15 22:38
要寫 vba loop 一 loop 才可以做到。(大前題是網址的連結是有固的的 模式。)
1. 先在使用 web query impor ...
thanks ar!!!
Aatos baba


別墅

積分: 955


99#
發表於 11-12-1 22:28 |只看該作者
yukaiwa 發表於 11-11-30 09:33
thanks ar!!!

FINE

今日的題目是︰

How to Change Line within a cell
如何在同儲存格內自動轉行
http://sites.google.com/site/exceltkk2/excel-tutorial/howtochangelinewithinacell

謝。


別墅

積分: 955


100#
發表於 11-12-8 21:06 |只看該作者
今日的題目是︰

How to inert blank lines between records with formula
如何在每一行記錄中插入一行空白的資料
http://sites.google.com/site/exceltkk2/excel-tutorial/howtoinertblanklinesbetweenrecordswithformula

謝。

首頁
34567...20

尾頁

跳至