返回列表 发帖

我的统计地图(纯excel制作,媲美专业统计地图)

多教教我们这些“软盲”

TOP

很好的软件,应该发一个教程就好了,谢谢哈

TOP

不知所云,搞没懂,

TOP

Dim d1 As New Dictionary

Private Sub CommandButton1_Click()
Dim i%
    For i = 0 To ListBox2.ListCount - 1
    X = ListBox2.List(i)
   
    y = Val(ListBox3.List(i))

Sheet17.Shapes(X).Fill.ForeColor.SchemeColor = Cells(aa(y), 3).Interior.ColorIndex + 7

    Next i
Sheet17.[b2] = TextBox1
ActiveSheet.Shapes("Picture 1").Select
    Selection.Formula = "样表!$A$6K$42"
End Sub

Private Sub ListBox1_Click()
Dim m As Long, i As Long, ar
        ListBox2.Clear
       ListBox3.Clear
       Set ar = d1(ListBox1.Text)
        dk = ar.keys
        dt = ar.Items
        For i = 0 To ar.Count - 1
        ListBox3.AddItem dt(i)
        ListBox2.AddItem dk(i)
        Next
        
     
End Sub

Private Sub UserForm_Initialize()
Dim n As Long, i As Long, arr
n = Sheet1.[A65536].End(xlUp).Row
arr = Sheet1.[a1].Resize(n, 59)
Application.ScreenUpdating = False
On Error Resume Next
For j = 2 To 6
For i = 2 To n
xx = arr(1, j) & ""
yy = arr(i, j) & ""
zz = arr(i, 1) & ""
If d1.Exists(xx) = False Then Set d1(xx) = New Dictionary
        d1(xx)(zz) = yy

Next
Next
userform1.ListBox1.List = d1.keys
Application.ScreenUpdating = True
End Sub

TOP

可惜没有注释

TOP

返回列表