Hi and welcome to the forum
Forum rule #2 says:
Don't post a question in the thread of another member -- start your own. If you feel it's particularly relevant, provide a link to the other thread. You may include up to 3 links to other URLs in a single post, no more, so only link to the relevant pages.
but since this is your first posting I'll not make an issue of it this time but in the future don't ignore forum rules.
Back to you question. I think the simplest way of solving this would be that add the word Yes to column D for the cities you wish to select and the modified macro would look like this.
Sub ChooseCity()
Dim cell As Range
Application.ScreenUpdating = False
Sheets("Sheet1").Activate
For Each cell In Range("A2:A" & Range("A" & Rows.Count).End(xlUp).Row)
If cell.Offset(0, 3) = "Yes" Then
Range(cell, cell.Offset(0, 2)).Copy
On Error Resume Next
Sheets(cell.Value).Activate
If Err.Number = 9 Then
Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Name = cell.Value
Range("A2").PasteSpecial xlPasteAll
Sheets("Sheet1").Range("A1:C1").Copy
Range("A1").PasteSpecial xlPasteAll
Columns("A:C").Columns.AutoFit
Application.CutCopyMode = False
Else
Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteAll
Columns("A:C").Columns.AutoFit
Application.CutCopyMode = False
End If
End If
Next
Sheets("Sheet1").Activate
Application.ScreenUpdating = True
End Sub
Alf
Bookmarks