Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Translate or remove Total field

Status
Not open for further replies.

patricktenthij

IS-IT--Management
Feb 26, 2005
1
0
0
NL
Hello,

I have defined a graph on a report showing a legend with the Percentage layout. Doing this, a Total field is automatically assigned to the legend which has always the value 100%.

Is there a way to remove this Total field?
If not, can it be translated into another text?

I'm working with version 8.5.

Best regards,

Patrick ten Thij
 
I think about the best you can do is to block it from view by laying a text box on top of it and formatting the text box with a background color of white.

-LB
 
How about this,

ReportDoc.ReportDefinition.ReportObjects.Item _ ("<<TotalField>>").ObjectFormat.EnableSuppress = True

and try this one,

Dim TextObject As TextObject = _ ReportDoc.ReportDefinition.ReportObjects.Item("Text1")
TextObject.Text = "Hallo"

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top