Viewing 8 posts - 1 through 8 (of 8 total)
Hi,
As per my knowledge i will create a summary and detailed reports (drill through),
summary report with project, count(orders) and quantity. and detailed report with project, order and other details...
January 30, 2013 at 6:05 am
Create a parameter with boolean datatype, you will get 2 radio buttons true and false.
then in table visibility property write a below expression
=iif(Parameters!sample.Value=true,true,false)
January 30, 2013 at 5:29 am
=IIF(Enddate.value> Startdate.value,swith(............),IIF(Endate.value=Startdate.value,newexpression))
January 29, 2013 at 2:33 am
use nested iif conditions like below
IIF(Job_Type.value="install" and completion.value<72,"red",iif(Job_Type.value="service" and completion.value<100,"red"),"green")
January 29, 2013 at 2:23 am
Hi
As per my understand we can't use straight line under table, if you want line under text use TextDecoration=Underline, or if you want straight line to divide subtotals or...
January 21, 2013 at 11:21 pm
try below expression
=IIF(instr(Fields!Line.Value, "Avg")," %" & CSTR(MTD.value),MTD.value)
January 21, 2013 at 5:01 am
use below expression in Avg column
="%" & cstr(Avg.Value)
January 21, 2013 at 4:46 am
=IIF(Reportname.Fieldname="yes",reportname.Amount1,reportname.amount2)
January 21, 2013 at 4:18 am
Viewing 8 posts - 1 through 8 (of 8 total)