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

Hiding rows in a report

Status
Not open for further replies.

boani

Programmer
Jun 22, 2002
7
IN
Hello,
Is there any way to hide rows in a report based on some cond.I have a report with foll objs -
State
City
Revenue
I want to hide rows with revenue < 10000.Is it possible?

thanx
boani
 
Go to Format/Filters, hit Define and add a filter with a formula of &quot;= <Revenue> > 10000 (or whatever you want)
 
hi
thanx hotcross.but i did not remember to mention one issue.the 'revenue' obj is the result of formula involving xtended syntax.so i am not able to apply a filter on it.wat else can be done?

 
Hi Boani,

Create a check-variable that gives back a 'Y' for values over 10000 and 'N' for those under 10000. Apply a filter on this new variable.

<variable> : =If <revenue> > 10000 Then 'Y' Else 'N'

If you succeed to create this variable as a detail or a dimension you can put a filter on it. If the variable defines itself as a measure , BO does not allow a filter.
(only filters on universe-defined measures are allowed in BO, which is quite bad!) T. Blom
Information analist
Shimano Europe
tbl@shimano-eu.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top