programing

매크로를 사용하여 Excel 워크북의 모든 피벗 테이블 새로 고침

showcode 2023. 4. 10. 22:24
반응형

매크로를 사용하여 Excel 워크북의 모든 피벗 테이블 새로 고침

20개의 다른 피벗 테이블이 있는 워크북이 있습니다.모든 피벗 테이블을 찾아 VBA에서 새로 고칠 수 있는 쉬운 방법이 있습니까?

네.

ThisWorkbook.RefreshAll

또는 Excel 버전이 오래되었다면

Dim Sheet as WorkSheet, Pivot as PivotTable
For Each Sheet in ThisWorkbook.WorkSheets
    For Each Pivot in Sheet.PivotTables
        Pivot.RefreshTable
        Pivot.Update
    Next
Next

이 VBA 코드는 워크북의 모든 피벗 테이블/차트를 새로 고칩니다.

Sub RefreshAllPivotTables()

Dim PT As PivotTable
Dim WS As Worksheet

    For Each WS In ThisWorkbook.Worksheets

        For Each PT In WS.PivotTables
          PT.RefreshTable
        Next PT

    Next WS

End Sub

또 다른 비프로그래밍 옵션은 다음과 같습니다.

  • 각 피벗 테이블 오른쪽 클릭
  • 테이블 옵션 선택
  • '열렸을새로 고침' 옵션을 선택하십시오.
  • OK 버튼을 클릭합니다.

이렇게 하면 워크북이 열릴 때마다 피벗 테이블이 새로 고쳐집니다.

ActiveWorkbook.RefreshAll는 피벗 테이블뿐만 아니라 ODBC 쿼리도 모두 새로 고칩니다.데이터 연결을 참조하는 몇 가지 VBA 쿼리가 있으며, 이 옵션을 사용하면 명령어가 VBA에서 제공하는 상세 정보를 사용하지 않고 데이터 연결을 실행할 때 크래시됩니다.

피벗만 새로 고치려면 이 옵션을 사용하는 것이 좋습니다.

Sub RefreshPivotTables()     
  Dim pivotTable As PivotTable     
  For Each pivotTable In ActiveSheet.PivotTables         
    pivotTable.RefreshTable     
  Next 
End Sub 

상황에 따라서는 PivotTable과 PivotCache를 구별해야 할 수 있습니다.캐시에는 자체 새로 고침 방법과 컬렉션이 있습니다.따라서 피벗 테이블 대신 모든 피벗 캐시를 새로 고칠 수 있었습니다.

차이점?새 피벗 테이블을 만들 때 이전 테이블을 기준으로 할지 묻는 메시지가 표시됩니다.아니오로 설정하면 이 피벗 테이블은 자체 캐시를 가져와 소스 데이터의 크기를 두 배로 늘립니다."예"라고 대답하면 WorkBook은 작게 유지되지만 단일 캐시를 공유하는 피벗 테이블 모음에 추가됩니다.해당 컬렉션의 단일 피벗 테이블을 새로 고치면 전체 컬렉션이 새로 고쳐집니다.따라서 WorkBook의 모든 캐시를 새로 고치는 것과 WorkBook의 모든 피벗 테이블을 새로 고치는 것의 차이를 짐작할 수 있습니다.

피벗 테이블 도구 모음에는 모두 새로 고침 옵션이 있습니다.그만하면 됐어.다른 건 할 필요 없어요.

Ctrl+alt+를 누릅니다.F5

VB 워크시트 개체에 PivotTables 컬렉션이 있습니다.따라서 다음과 같은 빠른 루프가 작동합니다.

Sub RefreshPivotTables()
    Dim pivotTable As PivotTable
    For Each pivotTable In ActiveSheet.PivotTables
        pivotTable.RefreshTable
    Next
End Sub

참호 메모:

  1. 피벗 테이블을 업데이트하기 전에 보호된 시트를 모두 보호 해제해야 합니다.
  2. 자주 저축하다.
  3. 좀 더 생각해보고 나중에 업데이트할게요.:)

행운을 빕니다.

코드

Private Sub Worksheet_Activate()
    Dim PvtTbl As PivotTable
        Cells.EntireColumn.AutoFit
        For Each PvtTbl In Worksheets("Sales Details").PivotTables
        PvtTbl.RefreshTable
        Next
End Sub 

정상적으로 동작합니다.

코드는 시트 활성화 모듈에서 사용되므로 시트가 활성화될 때 깜박임/점멸을 표시합니다.

특정 연결을 새로 고칠 도 있고, 연결된 모든 피벗이 새로 고쳐집니다.

이 코드를 위해 Excel에 있는 테이블에서 슬라이서를 만들었습니다.

Sub UpdateConnection()
        Dim ServerName As String
        Dim ServerNameRaw As String
        Dim CubeName As String
        Dim CubeNameRaw As String
        Dim ConnectionString As String

        ServerNameRaw = ActiveWorkbook.SlicerCaches("Slicer_ServerName").VisibleSlicerItemsList(1)
        ServerName = Replace(Split(ServerNameRaw, "[")(3), "]", "")

        CubeNameRaw = ActiveWorkbook.SlicerCaches("Slicer_CubeName").VisibleSlicerItemsList(1)
        CubeName = Replace(Split(CubeNameRaw, "[")(3), "]", "")

        If CubeName = "All" Or ServerName = "All" Then
            MsgBox "Please Select One Cube and Server Name", vbOKOnly, "Slicer Info"
        Else
            ConnectionString = GetConnectionString(ServerName, CubeName)
            UpdateAllQueryTableConnections ConnectionString, CubeName
        End If
    End Sub

    Function GetConnectionString(ServerName As String, CubeName As String)
        Dim result As String
        result = "OLEDB;Provider=MSOLAP.5;Integrated Security=SSPI;Persist Security Info=True;Initial Catalog=" & CubeName & ";Data Source=" & ServerName & ";MDX Compatibility=1;Safety Options=2;MDX Missing Member Mode=Error;Update Isolation Level=2"
        '"OLEDB;Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=True;Initial Catalog=" & CubeName & ";Data Source=" & ServerName & ";Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Use Encryption for Data=False;Tag with column collation when possible=False"
        GetConnectionString = result
    End Function

    Function GetConnectionString(ServerName As String, CubeName As String)
    Dim result As String
    result = "OLEDB;Provider=MSOLAP.5;Integrated Security=SSPI;Persist Security Info=True;Initial Catalog=" & CubeName & ";Data Source=" & ServerName & ";MDX Compatibility=1;Safety Options=2;MDX Missing Member Mode=Error;Update Isolation Level=2"
    GetConnectionString = result
End Function

Sub UpdateAllQueryTableConnections(ConnectionString As String, CubeName As String)
    Dim cn As WorkbookConnection
    Dim oledbCn As OLEDBConnection
    Dim Count As Integer, i As Integer
    Dim DBName As String
    DBName = "Initial Catalog=" + CubeName

    Count = 0
    For Each cn In ThisWorkbook.Connections
        If cn.Name = "ThisWorkbookDataModel" Then
            Exit For
        End If

        oTmp = Split(cn.OLEDBConnection.Connection, ";")
        For i = 0 To UBound(oTmp) - 1
            If InStr(1, oTmp(i), DBName, vbTextCompare) = 1 Then
                Set oledbCn = cn.OLEDBConnection
                oledbCn.SavePassword = True
                oledbCn.Connection = ConnectionString
                oledbCn.Refresh
                Count = Count + 1
            End If
        Next
    Next

    If Count = 0 Then
         MsgBox "Nothing to update", vbOKOnly, "Update Connection"
    ElseIf Count > 0 Then
        MsgBox "Update & Refresh Connection Successfully", vbOKOnly, "Update Connection"
    End If
End Sub

최근 아래 명령어를 사용했는데 정상적으로 동작하고 있는 것 같습니다.

ActiveWorkbook.RefreshAll

도움이 됐으면 좋겠다.

MS Excel 2003 을 사용하고 있는 경우는, 뷰-> 툴바-> 피봇 테이블로 이동합니다.이 툴바에서! 이 기호를 클릭하면 리프레쉬를 실행할 수 있습니다.

언급URL : https://stackoverflow.com/questions/70947/refreshing-all-the-pivot-tables-in-my-excel-workbook-with-a-macro

반응형