K
Kasper Skjødt Nielsen
Hi
I have a small OLAP Pivot TAble :
Set oView = PTable.ActiveView
oView.UseProviderFormatting = True
'Add Dimensions to the column, row, and filter axes.
' Filteraxis
oView.FilterAxis.InsertFieldSet oView.FieldSets("Date")
' Row Axis
oView.RowAxis.InsertFieldSet oView.FieldSets("Region")
oView.RowAxis.FieldSets("Region").Fields("Region").Expanded = True
oView.RowAxis.DisplayEmptyMembers = False
'Data area.
oView.DataAxis.InsertTotal oView.Totals(""Visitors"")
oView.DataAxis.InsertTotal oView.Totals(""Customers"")
oView.DataAxis.InsertTotal oView.Totals(""Sales"")
How do I make the dataaxis values right-aligned ?
Does anyone have a link to somwhere with definition of different
properties of the different objects in OWC? (like the "Expanded"
property of the RowAxis).
Kasper Nielsen
I have a small OLAP Pivot TAble :
Set oView = PTable.ActiveView
oView.UseProviderFormatting = True
'Add Dimensions to the column, row, and filter axes.
' Filteraxis
oView.FilterAxis.InsertFieldSet oView.FieldSets("Date")
' Row Axis
oView.RowAxis.InsertFieldSet oView.FieldSets("Region")
oView.RowAxis.FieldSets("Region").Fields("Region").Expanded = True
oView.RowAxis.DisplayEmptyMembers = False
'Data area.
oView.DataAxis.InsertTotal oView.Totals(""Visitors"")
oView.DataAxis.InsertTotal oView.Totals(""Customers"")
oView.DataAxis.InsertTotal oView.Totals(""Sales"")
How do I make the dataaxis values right-aligned ?
Does anyone have a link to somwhere with definition of different
properties of the different objects in OWC? (like the "Expanded"
property of the RowAxis).
Kasper Nielsen