標題:
如何選取"尋找"結果整列資料
[打印本頁]
作者:
nmtaux
時間:
2016-4-2 22:25
標題:
如何選取"尋找"結果整列資料
各位高手:
小弟網路上找很久,
一直都找不到excel可以選取"尋找"結果整列資料的方法,
請問各位大大有何高見嗎?
作者:
luhpro
時間:
2016-4-3 01:11
各位高手:
小弟網路上找很久,
一直都找不到excel可以選取"尋找"結果整列資料的方法,
請問各位大大 ...
nmtaux 發表於 2016-4-2 22:25
試試:
Sub nn()
With Range("a1:a500")
Set c = .Find(2, LookIn:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
c.EntireRow.Interior.ColorIndex = 8
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With
End Sub
複製代碼
作者:
nmtaux
時間:
2016-4-3 10:00
標題:
VBA 以關鍵字搜尋刪除整列
各位高手,請問vba以關鍵字搜尋後刪除整列怎麼寫比較簡單?網路上寫得都很難,看不懂。
作者:
nmtaux
時間:
2016-4-3 10:02
感謝高手,小弟馬上去試試,跪謝!
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)