在Aspose.Cells产品中是否有与此VBA函数PivotTable.PivotSelect等效的函数?我正在寻找一种方法,可以在包含特定数据字段值的整个选定单元格上创建边框,也可以根据需要在特定范围上创建边框。
执行此操作的VBA宏如下所示(仅提供数据字段名称参数):
v_wbx.Sheets(v_SheetName).**PivotTables(v_CurrentPivotName).PivotSelect **DataFieldName**, xlDataAndLabel, True**
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.Color = v_Color
.TintAndShade = 0
.Weight = v_Weight
End With
With Selection.Borders(xlEdgeTop)
.LineStyle = xlContinuous
.Color = v_Color
.TintAndShade = 0
.Weight = v_Weight
End With
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Color = v_Color
.TintAndShade = 0
.Weight = v_Weight
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Color = v_Color
.TintAndShade = 0
.Weight = v_Weight
End With
Assose.Cells是否涵盖此问题?我查阅了文档,但未找到任何解决方案。我知道Assose条件格式设置提供了“范围”选择,但在此我希望通过指定数据字段名称来创建围绕整个单元格选择的边框,并且不使用任何条件格式规则。这是通过VBA使用以下枚举完成的:https://learn.microsoft.com/en-us/office/vba/api/excel.xlptselectionmode和前面提到的函数。
我确切地说,我正在使用该产品的试用版来评估功能范围。请分享您对此主题的正面或负面反馈,谢谢
1条答案
按热度按时间q3qa4bjr1#
您可以通过Assose. Cells for Java设置透视表中特定数据区域值的格式。请参阅以下示例以供参考。您可以通过两种方式应用格式(即直接应用格式和通过透视格式条件)。
例如:
您也可以在专用的forum中发布您的查询。
ps.我在aspose做支持开发人员/布道者。