April 2006
Beginner
1114 pages
98h 16m
English
xmlmap.PreserveColumnFilter [= setting]
True preserves mapped list column filters when data is refreshed. False resets the filter to show all the data. Default is True.
The following code displays the PreserveColumnFilter and other general property settings for an XML map in the Debug window:
Set xmap = ThisWorkbook.XmlMaps("Numbers_Map")
Debug.Print "Preserve column filter? " & xmap.PreserveColumnFilter
Debug.Print "Preserve formatting? " & xmap.PreserveNumberFormatting
Debug.Print "Root node name: " & xmap.RootElementName
Debug.Print "Root namespace: " & xmap.RootElementNamespace
Debug.Print "Save data source definition? " & xmap.SaveDataSourceDefinition
Debug.Print "Show validation errors? " & xmap.ShowImportExportValidationErrorsRead now
Unlock full access