香港新浪網MySinaBlog 精選話題工具
Emily | 30th Jun 2009, 06:26 AM | 雜談 | (75 Reads)

不公開


Emily | 13th Apr 2009, 12:09 PM | WB & WS | (414 Reads)

如何取得凍窗格的位置

例如選擇D3後凍結窗格 , 如何用VBA得到D3這個地址?

如果沒有隱藏 (A, B, C column),  可用

ActiveWindow.SplitRow + 1

ActiveWindow.SplitColumn  + 1

 (閱讀全文)

Emily | 22nd Feb 2009, 00:20 AM | WB & WS | (493 Reads)

VBA 清除立即窗口内容

Sub DelInImmedate()
    Debug.Print Now
    Application.SendKeys "^g ^a {DEL}"
End Sub

API Method: http://www.dailydoseofexcel.com/archives/2004/06/09/clear-the-immediate-window/

 


Emily | 28th Jan 2009, 11:48 AM | General | (447 Reads)

測試 剪貼板上無內容

如果要判斷剪貼簿是否有資料可以使用 CountClipboardFormats API 函數
 

Declare Function CountClipboardFormats Lib "user32" () As Long

Function IsClipboardEmpty() As Boolean
If CountClipboardFormats = 0 Then
  IsClipboardEmpty = True
Else

  IsClipboardEmpty = False
End If
End Function

 

 (閱讀全文)


Emily | 2nd Aug 2008, 20:46 PM | Excel 2007 | (809 Reads)

Filtering by Color in Excel 2007

A VBA topic on Filtering by the Active Cell's Value, Font Color or Fill Color in Excel 2007 by Ron de Bruin.

Details: http://www.rondebruin.nl/colorfilter2007.htm

The above link also lead you to download an Add-in  (CommandBar Tools) to find ID numbers.


Emily | 30th Jul 2008, 14:27 PM | Excel 2007 | (1493 Reads)

Excel 2007 與 2003 中顯示的顏色不一至

Excel 2007中編輯好的檔,其中背景顏色(圖案顏色)為綠色,到了另外幾台電腦中用2003打開時卻顯示為黃色。 不知道用什麼辦法才能讓 Excel 2007 與 Excel 2003 中顯示的顏色一至? 

 

 (閱讀全文)

Emily | 22nd Jul 2008, 12:54 PM | 雜談 | (694 Reads)

 chijanzen 的雜貨鋪

Chijanzen 的個人網站停了頗長的時間,偶然遇上,舊雨新知請訪問一下

停了2年,從新出發的網站

本人因為工作停了2年的網誌,終於偷偷的複站了
選上了 Wordpress 重新出發,喜歡我的網誌的請加連結
路過的也感謝你參觀

http://chijanzen.net/wp/


Next