0
我有一年的數據庫,列A(日期),列B和相應的數據。 A列有yyyy/mm/dd
格式。目前我正在使用以下代碼,它可以指定要複製的範圍。現在我想改進它以用於搜索,並複製當前月份數據(列A和B)。任何幫助,高度讚賞。謝謝。搜索數據格式並複製並粘貼
Sub CopyRange()
Dim FromRange As Range
Dim ToRange As Range
Dim Str As String
Set FromRange = Application.InputBox("Enter The Range Want to Copy", "Update ", "data!", Type:=8)
Set ToRange = Application.InputBox("Enter The Range Want to Copy", "Update", "Chart!", Type:=8)
FromRange.Copy ToRange
End Sub
Sub FindMonth()
Dim LastRow, matchFoundIndex, iCntr As Long
LastRow = Cells(Rows.Count, "A").End(xlUp).Row
For iCntr = 1 To LastRow ' 1 set the start of the dup looks
If Cells(iCntr, 1) <> "" Then
matchFoundIndex = WorksheetFunction.Match(Cells(iCntr, 1), Range("A1:A" & LastRow), 0)
If iCntr <> matchFoundIndex Then
Cells(iCntr, 10) = "same"
End If
End If
Next
End Sub This code helps to select same date, need to modify to select same month.
您的「數據庫」是否每個日期都包含一個且只有一行?並按日期順序?如果是這樣,您應該能夠輕鬆計算出需要複製的行。如果不是,則可能會篩選月份開始和結束之間的日期,然後複製可見單元格。你真的嘗試過什麼? – YowE3K
@ YoWE3K對於給定的日期將有1到4行,例如2016/12/13有4行,但2016/12/14只有3行,我想只查看2016/12並複製所有12月份的數據,但是還沒有運氣。我可以使用過濾器,但是以我的總體目標,我需要通過宏來完成。謝謝。 – Kuma