如何提示用户选择工作表和范围?

时间:2018-10-04 23:39:41

标签: excel vba

我的问题是如何提示用户从同一工作簿但不同的工作表中选择工作表和范围?

Sub parse_data()

    Dim lr As Long
    Dim ws As Worksheet
    Dim vcol, i As Integer
    Dim icol As Long
    Dim myarr As Variant
    Dim title As String
    Dim titlerow As Integer

    'vsht = Application.InputBox("Type the name of the sheet", Type:=2)
    vcol = 1    #Filtering on this column
    vcol = Application.InputBox("Type in the Column No", Type:=1)
    Set ws = Sheets("Data") 

“在此工作表上进行过滤,这是我要提示用户选择工作表,该工作表中的列号和范围自动选择直到使用的范围的地方。

    'Set ws = Application.InputBox("Select a Range on which you want to split", Type:=8)
    lr = ws.Cells(ws.Rows.Count, vsht.vcol).End(xlUp).Row
    title = "A1:AB1"
    titlerow = ws.Range(title).Cells(1).Row
    icol = ws.Columns.Count
    ws.Cells(1, icol) = "Unique"

    For i = 2 To lr


        On Error Resume Next


        If ws.Cells(i, vcol) <> "" And Application.WorksheetFunction.Match(ws.Cells(i, vcol), ws.Columns(icol), 0) = 0 Then
            ws.Cells(ws.Rows.Count, icol).End(xlUp).Offset(1) = ws.Cells(i, vcol)
        End If
    Next

    myarr = Application.WorksheetFunction.Transpose(ws.Columns(icol).SpecialCells(xlCellTypeConstants))
    ws.Columns(icol).Clear

    For i = 2 To UBound(myarr)
        ws.Range(title).AutoFilter field:=vcol, Criteria1:=myarr(i) & ""
        If Not Evaluate("=ISREF('" & myarr(i) & "'!A1)") Then
            Sheets.Add(after:=Worksheets(Worksheets.Count)).Name = myarr(i) & ""
        Else
            Sheets(myarr(i) & "").Move after:=Worksheets(Worksheets.Count)
        End If

        ws.Range("A" & titlerow & ":A" & lr).EntireRow.Copy Sheets(myarr(i) & "").Range("A1")
        Sheets(myarr(i) & "").Columns.AutoFit
    Next

    ws.AutoFilterMode = False
    ws.Activate      

End Sub

1 个答案:

答案 0 :(得分:0)

  

我的问题是如何提示用户从同一工作簿但不同工作表中选择工作表和范围?

您已在注释代码中回答了您的问题。我将做一些调整。

dim rng as range
Set rng = Application.InputBox("Select the Range on the Worksheet which you want to split", Type:=8)
if not rng is nothing then
    set rng = intersect(rng.entirecolumn, rng.parent.usedrange)
    debug.print rng.address(0, 0, external:=true)
else
    debug.print "nothing selected"
end if