Thanks Dave! Actually, Department is a filter which groups the one or more function descriptions and it displays the Development, production … Code for Department.
=If ( In list(“Software”,“Hardware”) Then ("Development)) Else If ( In list(“Something”,“Anything”) Then (“Production”)) Else ()
But User wants to apply a filter FY Budget is Expense Code = “4566” only for Development section and it should not apply Current month and YTD Budget.
For that I created new Universe object which Selects FY Budget4566 where Expense code=4566 and Then in the report created another filter called as =If ( = “Development” Then Else
But I’m getting Computation Error.
Is anything wrong doing this way?
Please Advice.
Report looks like
Development Production
C-Month YTD-Bud FY-Bud C-Month YTD-Bud FY-Bud
p-0001 0.00 0.00 0.00 0.00 0.00 0.00
p-0002 1.34 1.34 2.50 0.00 1.45 2.45
p-0004 0.00 0.00 0.00 0.00 0.34 0.65
p-0006 4.50 4.50 5.00 0.00 0.00 0.00
Regards,
Prathiba
— DRathbun@AOL.COM wrote:
In a message dated 01-03-30 16:40:50 EST, you write:
I’ve a problem with cross tab report
this includes in the COLUMN is PROJECT CODE as Dimension object and ROW is Department also dimension object (function which shows all departments
like Development, Production and Maintenance…) and in the BODY sum(Current month), sum(YTD Budget) and sum(FY Budget) all are Measure objects.
I need to apply a condition as EXP_Code = 4566 for FY Budget only for Development section.
Modified the FY Budget but it applies all the departments.
Do you want a condition or a filter?
A condition reduces the amount of data downloaded from your server. A filter leaves the data in the cube but does not display on the report.
If you want a condition, it would be on the query panel. You would have
EXP_Code Equal To 4566
and Department Equal To ‘Development’
or
Department Not Equal To ‘Development’
In the case of a filter, you will have to create a complex filter. Select the Department object from your crosstab. Select Format + Filters from the menu. Click the “Add” button. Now, rather than selecting an idividual department, you have to click the “Define” button to create a boolean expression that will be used as a filter. It would look something like:
=( = “Development” AND <EXP_Code>=4566) OR (<Department <> “Development”)
That would allow any department other than Development to show up, but Development will only show if the EXP_Code restriction is also met.
At least I think so. I don’t have your data available to test, but this should hopefully give you some idea of where to go to find a solution.
Regards,
Dave Rathbun
Integra Solutions
www.islink.com
__________________________________________________ Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/?.refer=text
Listserv Archives (BOB member since 2002-06-25)