logo

Response

« Return to the main article

You are viewing this page out of context. To see it in the context it is intended please click here.

About This Page

Reply posted by Jagdev on Wed 14 Jun 2006 in response to Keeping the boss happy

Re: How to Hide Row Grand Total in OWC 10/11

How I did is .....


for (i=0;i<objView.FieldSets.Count;i++)
{
for (ic=0;ic<objView.FieldSets(i).Fields.Count;ic++)
{
objView.FieldSets(i).Fields(ic).Subtotals(0) = "False"
}
}


for (i=0;i<objView.RowAxis.FieldSets.Count;i++)
{
for (ic=0;ic<objView.RowAxis.FieldSets(i).Fields.Count;ic++)
{
objView.RowAxis.FieldSets(i).Fields(ic).Subtotals(0) = "False"
}
}


for (i=0;i<objView.ColumnAxis.FieldSets.Count;i++)
{
for (ic=0;ic<objView.ColumnAxis.FieldSets(i).Fields.Count;ic++)
{
objView.ColumnAxis.FieldSets(i).Fields(ic).Subtotals(0) = "False"
}
}