Viewing 15 posts - 1 through 15 (of 164 total)
In your table you should insert a group, the group will probably be switched on the cost centre field.
Make sure you have a header or footer available on your group.
Put...
March 30, 2009 at 4:48 am
i have a scenario like i want to display Top 10 sum and Total for others,the situation is like below
I think I would probably look at using...
March 19, 2009 at 3:13 am
You really can't change anything in the reports parameters area in the way you are looking for, I suppose the only way you will be able to do this is...
March 11, 2009 at 5:33 am
Not sure why you want to use the rownumber method in the Top N filtering, you shouldn't need to use this. Just set the filter to Top N and...
March 11, 2009 at 5:28 am
It sounds as though you are printing all of the fields seperately on the report, I would probably create a single address field that takes care of the blanks, for...
March 7, 2009 at 6:41 am
I would have thought you would need to decrypt within the stored procedure before returning the dataset to the report, what is the problem with doing it this way?
March 7, 2009 at 6:35 am
Hi
I think you should probably look at creating a stored procedure that is called from the .RDL using the necessary parameters that will allow you to manipulate the dataset. ...
March 5, 2009 at 2:27 am
Has anyone successfully used Azalea UPCTools to print barcodes on SSRS reports? If so, can you provide the steps used?
I have no idea what the Azalea UPCTools are, so...
March 5, 2009 at 2:19 am
Hi
The way to do this is to go to the properties of the table, then go to the filters, and add a filter in with an operator called TopN.
Should be...
February 24, 2009 at 8:43 am
Hi There Mr or Mrs Desperate!
First, I wouldn't try to put the whole thing into a single table, you'll struggle to make this work the way you want to. ...
February 20, 2009 at 6:41 am
Not sure of your actual syntax, but summing a calculated value is very easy:
EG:
Calculated value = IIF(Field1.Value="Yes", 1, 0)
The Total of this would be =SUM(IIF(Field1.Value="Yes",1,0))
It's really as simple as that,...
February 17, 2009 at 7:28 am
Hello Rob
As far as I know there is no method available to create a "standard" conditional format based on a Cell value, because the concept of cell value just doesn't...
February 17, 2009 at 6:36 am
="Average Tube Weight: " &
format(avg(fields!Wt_Tube1.value) + avg(fields!Wt_Tube2.value) + avg(fields!Wt_Tube3.value) + avg(fields!Wt_Tube4.value), "#.##")
Have you tried using:
="Average Tube Weight: " &
format(avg(fields!Wt_Tube1.value + fields!Wt_Tube2.value + fields!Wt_Tube3.value + fields!Wt_Tube4.value), "#.##")
Regards,
August 28, 2008 at 2:03 am
Rich text formatting is not supported in SSRS 2005, you could try using an icon embedded as an image in the document and then use that to the left of...
August 28, 2008 at 2:00 am
If all you want to do is to suppress the negative then you can set the value to it's absolute value by the following expression:
=ABS(Fields!FieldName.Value)
This will convert any negative number...
August 27, 2008 at 4:12 am
Viewing 15 posts - 1 through 15 (of 164 total)