Find (What:=key, After:=ActiveCell). ... 尤其在爬文這塊,現在卡最多的就是物件上,就我所看的書裡,VBA的物件好像有些方法就是 ... 例如這種用法: ... <看更多>
「vbafind用法」的推薦目錄:
- 關於vbafind用法 在 [問題] 關於Excel VBA 搜尋符合條件的儲存格問題- 看板Office 的評價
- 關於vbafind用法 在 請教一下關於VBA Find的問題 - Mobile01 的評價
- 關於vbafind用法 在 03 進階函數FIND轉為VBA公式輸出 - YouTube 的評價
- 關於vbafind用法 在 VBA-Excel/VBA_FIND函数用法.py at master - GitHub 的評價
- 關於vbafind用法 在 Newest Questions - Stack Overflow 的評價
- 關於vbafind用法 在 Python obfuscation github 的評價
- 關於vbafind用法 在 Python obfuscation github 的評價
vbafind用法 在 VBA-Excel/VBA_FIND函数用法.py at master - GitHub 的推薦與評價
Excel的这个功能对查找指定的数据非常有用,特别是在含有大量数据的工作表中搜索数据时,更能体现出该功能的快速和便捷。同样,在ExcelVBA中使用与该功能对应的Find方法, ... ... <看更多>
vbafind用法 在 Python obfuscation github 的推薦與評價
It is a simple piece of code to find the median of an array of integers, ... topic to your repo To associate your repository with the vba-obfuscation topic, ... ... <看更多>
vbafind用法 在 Python obfuscation github 的推薦與評價
I'm wondering if there is an easy way to deobfuscate the code to find out if ... to your repo To associate your repository with the vba-obfuscation topic, ... ... <看更多>
vbafind用法 在 [問題] 關於Excel VBA 搜尋符合條件的儲存格問題- 看板Office 的推薦與評價
Worksheets("Sheet2").Select
Cells.Find(What:="關鍵字1", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, MatchByte:=False, SearchFormat:=False).Activate
Range(Worksheets("Sheet2").Cells(data_long, 3), Worksheets("Sheet2").Cells(data
_long, 10)).Copy
Worksheets("Sheet1").Select
Worksheets("Sheet1").Cells(i, 2).Select
ActiveSheet.Paste
Application.CutCopyMode = False
data_long = 0
---------------------------------------------------------
Worksheets("Sheet2").Select
Cells.Find(What:="關鍵字2", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, MatchByte:=False, SearchFormat:=False).Activate
'
Range(Worksheets("Sheet2").Cells(data_fix, 3), Worksheets("Sheet2").Cells(data
_fix, 10)).Copy
Worksheets("Sheet1").Select
Worksheets("Sheet1").Cells(i, 10).Select
ActiveSheet.Paste
Application.CutCopyMode = False
data_long = 0
------------------------------------------------------------------------------
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If ActiveCell.Value = "關鍵字1" Then data_long = Target.Row
If ActiveCell.Value = "關鍵字2" Then data_fix = Target.Row
End Sub
這個語法..第一部份是在Sheet2找"關鍵字1"
比如說 此關鍵字是在B15
然後把C3到J15選取複製貼到Sheet1的某位置
請問其中Cells(date_long,3)代表什麼意思?
相同的第二部份也有..Cells(data_fix, 3)
這種用法是???
謝謝!
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 124.6.13.220
※ 編輯: spce 來自: 124.6.13.220 (06/26 23:33)
... <看更多>