Viewing 15 posts - 1 through 15 (of 16 total)
In 2008 R2, you can add page header & footer.
Select Report -> From Menu Bar Select Report - > There you can find Add Header / Add Footer.
Please go...
March 17, 2014 at 11:47 pm
Just try below code. if necessary you can modify accordingly
=SWITCH
(
Parameters!region_id.Value=0 AND Fields!comp.Value*0.05>Fields!allcomp.Value,"Green"
Parameters!region_id.Value=1 AND Fields!comp.Value*0.05>Fields!mum_comp.Value,"Green"
Parameters!region_id.Value=2 AND Fields!comp.Value*0.05>Fields!rowcomp.Value,"Green"
Parameters!region_id.Value=3 AND Fields!comp.Value*0.05>Fields!southcomp.Value,"Green","Red"
)
Hope this will work with you
May 7, 2013 at 12:57 am
Hi,
The expression which is used to hide duplicate values, used that exp in Row visibility property.
= IIF([........Expression.....],True,False)
April 4, 2013 at 2:47 am
In your query u'll have these parameters
@ApplicationName = 'Informatica' or 'Velocity' or 'MSCloud' --manually added to parameter
@EnvironmentName = 'PROD' or 'UAT(ITSM = PROD)' --manually added to parameter
and for...
April 1, 2013 at 12:20 am
I think u r following some wrong process..
Below is an example
FIRSTNAMEBIRTHPLACEVALUE
ERIKLONDON0
ERIKLONDON3
HARRYEDINBURGH2
HARRYEDINBURGH5
1. Add a indicator in the table and go to indicator properties.
2. Simply Add the column name like Sum(Fields!Calls.Value).
3....
March 29, 2013 at 6:34 am
If you have 3 different report you can insert three different image.
Go to Toolbox--> Image --> import the image you want to use in the report.
Repeat this process...
March 29, 2013 at 4:29 am
Change the Measurement unit to "Numeric" in value and state and see the result.
March 29, 2013 at 4:23 am
You can use below expression in the background color property of BIRTHPLACE textbox.
=IIF(Fields!BIRTHPLACE.Value = "LONDON","Red","Blue")
I think it will help you.
March 29, 2013 at 3:41 am
You can use below expression:
="Today is: "& today &" Output: "& day(today)&" - "& WeekDayName(DatePart(DateInterval.Weekday,today),True,FirstDayOfWeek.System)
And output will look like this
Today is: 3/29/2013 Output: 29 - Fri
March 29, 2013 at 3:15 am
In Action properties which section will i choose and what is the expression i can use to achieve the above scenario?
March 29, 2013 at 2:57 am
Viewing 15 posts - 1 through 15 (of 16 total)