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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using "StripString" in CR 10

Status
Not open for further replies.

Seabz420

IS-IT--Management
Jul 14, 2003
129
CA
Do I need to use the add in UFLTECH1.exe? The Business Objects says to use it up to version 7.0...I'm using 10. When I run the report in 10, I get an error on this line:

StripString ({pages_tab.IP ADDRESS},{@IP Address Strip} )

Ideas?
 
You might try using the Replace function instead.

For instance, if yo wnated to remove all hyphens out of a SSN field you could do it this way:

Replace({table.SSN},"-","")

Use the above logic in your formula instead of StripString.

~Brian
 
Here is your example with the Replace function:

Replace({pages_tab.IP ADDRESS},{@IP Address Strip},"")


~Brian
 
Hopefully Brian nailed it, replace probably does the same job, but if not, try posting specific information.

"When I run the report in 10, I get an error on this line:

StripString ({pages_tab.IP ADDRESS},{@IP Address Strip} )"

What error did you get?

What's in the referenced formula {@IP Address Strip}?

Why not take the extra 30 seconds to post the specifc error message and the code you used?

-k
 
The problem is that the table isn't setup properly. I'm working on a report that is someone else's and no-one really knows where the table is that it references. When I checked, that table is not there! Once I get that figured out and tested, I'll post if the problem is still occuring..but i doubt it.
 
I ended up putting the UFLTECH1.exe file on my system which allowed the above function to work.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top