i'm trying to rebuild some VBA-Code in Office-Scripts, because I want to automate the execution via Microsoft Power Automate (former Flow). Now I have problems with a section of my code dealing with pivot tables. In the VBA-Code, i use:
Dim oWSHilfsPivot As Worksheet
Set oWSHilfsPivot = ActiveWorkbook.Sheets("Hilfs_Pivots")
With oWSHilfsPivot.PivotTables("PivotTable1").PivotFields("Projekt")
.PivotItems("(blank)").Visible = True
End With
to automate the filtering of a pivot table:
How can I rebuild the filtering in Office Scripts? When I try to record it with the integrated Office Scripts Recorder, I get:
function main(workbook: ExcelScript.Workbook) {
// Unknown event received with eventId:153
}
So it seems like Office Scripts doesn't support this functionality yet by Default. Of course the definition of the variable works, the filtering is the Problem. ;)
I appreciate any help.
Within a PivotTable, you need: .getRowHierarchy & .getPivotItem and then set the visibility to false(shown below).
Example of the code below