ご協力いただければ幸いです。私は以下のコードを持っています。基本的には、ユーザーがExcelシートを選択できるダイアログボックスを開き、それを国のコラム(11)にフィルタリングしてフィルタリングし、その国をコピーして新しいブックに貼り付け、新しいブックに名前を付けますその国が次の国の行動を繰り返した後、各ワークブックを保存して閉じます。列内の特定のセルが空白の場合にのみコピーして貼り付けます。
コードは完全にそのまま動作しますが、ここでは、セルがある場合、またはヘッダーの下の列A、B、Cに2つのセルまたは3つのセルが空白の場合があります。これらの行を各国ごとにコピーして貼り付けてください。
私のコードの下にある私の写真では、A5のセルは空白です。この行をコピーして、ベルギーのブックに入れて、A14のセルは空白です。この行とブルガリアブックに入れ、ああ、セルC17はこの行を空白コピーし、ブルガリアのブックに入れています。ああ、セルA26、B26とC26はこの行を空白にコピーし、それをクロアチアワークブックに入れます。
いつもどんな助けも大歓迎です。ここで
そして、ここではそれが行全体をコピーするxlCellTypeBlanksを使用して、簡単に自分のコード
Sub Open_Workbook_Dialog()
Dim my_FileName As Variant
Dim my_Workbook As Workbook
MsgBox "Pick your CRO file" '<--| txt box for prompt to pick a file
my_FileName = Application.GetOpenFilename(FileFilter:="Excel Files,*.xl*;*.xm*") '<--| Opens the file window to allow selection
If my_FileName <> False Then
Set my_Workbook = Workbooks.Open(Filename:=my_FileName)
Call Filter(my_Workbook) '<--|Calls the Filter Code and executes
End If
End Sub
Public Sub Filter(my_Workbook As Workbook)
Dim rCountry As Range, helpCol As Range
Dim wb As Workbook
With my_Workbook.Sheets(1) '<--| refer to data worksheet
With .UsedRange
Set helpCol = .Resize(1, 1).Offset(, .Columns.Count) '<--| get a "helper" column just at the right of used range, it'll be used to store unique country names in
End With
With .Range("A1:Y" & .Cells(.Rows.Count, 1).End(xlUp).Row) '<--| refer to its columns "A:Y" from row 1 to last non empty row of column "A"
.Columns(11).AdvancedFilter Action:=xlFilterCopy, CopyToRange:=helpCol, Unique:=True '<-- call AdvancedFilter on 11th column of the referenced range and store its unique values in "helper" column
Set helpCol = Range(helpCol.Offset(1), helpCol.End(xlDown)) '<--| set range with unique names in (skip header row)
For Each rCountry In helpCol '<--| iterate over unique country names range (skip header row)
.AutoFilter 11, rCountry.Value2 '<--| filter data on country field (11th column) with current unique country name
If Application.WorksheetFunction.Subtotal(103, .Cells.Resize(, 1)) > 1 Then '<--| if any cell other than header ones has been filtered...
Set wb = Application.Workbooks.Add '<--... add new Workbook
wb.SaveAs Filename:=rCountry.Value2 '<--... saves the workbook after the country
.SpecialCells(xlCellTypeVisible).Copy wb.Sheets(1).Range("A1")
ActiveSheet.Name = rCountry.Value2 '<--... rename it
.SpecialCells(xlCellTypeVisible).Copy ActiveSheet.Range("A1") 'copy data for country under header
Sheets(1).Range("A1:Y1").WrapText = False 'Takes the wrap text off
ActiveWindow.Zoom = 55
Sheets(1).UsedRange.Columns.AutoFit 'Autofits the column
wb.Close SaveChanges:=True '<--... saves and closes workbook
End If
Next
End With
.AutoFilterMode = False '<--| remove autofilter and show all rows back
End With
helpCol.Offset(-1).End(xlDown).Clear '<--| clear helper column (header included)
End Sub
ループフィルタは国によっては、最初に行われ、あなたがチェックする必要がない場合は必要ありません各行の国名は、1組の特殊セルとしてコピー&ペーストできるだけです。 –
@Mak:助けてくれてありがとう。あなたが提供したコードを試してみたいと思いますが、既存のコードでこの新しいコードをどこに置くのですか? –
@PhilipConnell:私はすでに答えを変更しています。もしあなたが持っていればコピーコードを置き換えてください。 – Mak