Viewing 15 posts - 1 through 15 (of 16 total)
Can you clarify your question a little more. Are you looking for a running total, the total for the row, or the column total. You did say supplier total, are...
August 2, 2013 at 1:23 pm
This was done in SSRS 2005 and I was able to get it working only locally. I didn't realize it was not working once you deploy it. I have not...
March 13, 2011 at 7:13 pm
It is not possible to stop the call to db after you run the report. The possible work around could be, in you dataset you can check the value of...
April 26, 2009 at 9:35 am
sorry guys if it did not work for you. I will have to get back to you guys at a later date after I get a chance to look at...
April 23, 2009 at 9:54 pm
I got your email.. that is something I have worked on. My explanation would still stick along the line I mentioned earlier. If it was not clear, let me go...
April 9, 2009 at 2:31 pm
I believe your XML is being rendered as an HTML out here.. I will send you my email address.. Just email me your rdl as an attachment. I will try...
April 8, 2009 at 2:13 pm
In your solution explorer, right click your rdl and click the view code. That will give you the XML version of your rdl. Copy paste that in here.. I will...
April 3, 2009 at 4:10 pm
So the Categories A, B and C are the actual data or the field name? If they are the actual data, the solution I proposed earlier should work.. well it...
April 3, 2009 at 2:18 pm
What is your table structure like?
Are X and Y the column of the same table?
Can you may be re-state what are the columns of your table and what is the...
April 3, 2009 at 12:37 pm
Try something like this.
For your ColumnX, change the visibility expression to:
= IIF((ReportItems!txtBoxClmnX.Value = "A") OR (ReportItems!txtBoxClmnX.Value = "B") OR (ReportItems!txtBoxClmnX.Value = "C"), False, True)
Here txtBoxClmnX...
April 3, 2009 at 9:17 am
if ( Sum (IIF(IsNothing(Fields1.Value), 0, Fields1.Value)), Field3.value) = 0 ) then
0
else
(Sum (IIF(IsNothing(Fields2.Value), 0, Fields2.Value), Field3.value) / Sum (IIF(IsNothing(Fields1.Value), 0, Fields1.Value), Field3.value)
i am struck in between, Can anybody please tell me...
April 3, 2009 at 9:01 am
Yup I see what you are saying. It is a PL SQL that I am using.. very similar to T-SQL ; I will definitely look at the way you suggested....
September 22, 2008 at 10:05 am
Thanks Jack but I got an error running the statement. This is the error statement I got..
...
September 22, 2008 at 9:47 am
What did you mean by "The dates do not necessarily reflect when a change in address was made so you could have rows and rows where the same address is...
September 22, 2008 at 9:28 am
Thank you again Jack. I would love to have you look at my rdl but I am not sure about the policy so let me try to lay out the...
September 22, 2008 at 8:58 am
Viewing 15 posts - 1 through 15 (of 16 total)