Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
797 views
in Technique[技术] by (71.8m points)

win32com - how to check if a value exists in a pivot table before filtering for it?

I have tried multiple ways as below but none of them working for me.

  1. I am getting not iterable error
for pivot_item in PivotTable.PivotFields("IN-PRODUCT-GROUP-CODE"):
    print(pivot_item.Name)
  1. If value not present in pivot table throwing exception

    for fld in product_grp_cd_filter:
             if PivotTable.PivotFields('IN-PRODUCT-GROUP-CODE').PivotItems(fld).Visible:
                PivotTable.PivotFields('IN-PRODUCT-GROUP-CODE').PivotItems(fld).Visible = False
    
  2. getting Count method not present error

    PivotTable.PivotFields('IN-PRODUCT-GROUP-CODE').Count
    

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...