Viewing 11 posts - 1 through 11 (of 11 total)
You can query an SSAS cube directly using SSRS 2008 R2.
January 26, 2012 at 1:15 pm
@penelson
re:
=((Sum(Fields!field3.Value) / Sum(Fields!field1.Value) * 10 + Sum(Fields!field4.Value) / Sum(Fields!field1.Value) * 10 + Sum(Fields!field5.Value) / Sum(Fields!field1.Value) * 10 + Sum(Fields!field6.Value) / Sum(Fields!field1.Value) * 10) - (Sum(Fields!field7.Value) / Sum(Fields!field2.Value) * 10 +...
January 26, 2012 at 1:03 pm
I don't believe there is a Format function in Oracle SQL for datetime fields.
If your released_date field is already a datetime type, you should not need to enter a format...
November 16, 2011 at 9:43 am
I haven't tried this, but try the solution provided here:
jacksoncc
July 1, 2010 at 6:58 am
Alternative - you do not have to place a group within a group to accomplish this. Instead:
To the blank report, add a List box large enough to include all...
June 15, 2010 at 6:55 am
I don't believe you can include global variables, like page number in a table footer. SSRS does not apper to allow you to start page numbering based on anything...
October 13, 2009 at 8:07 am
Here's the expression you can add to a text box placed in the header or footer:
="Page " & Globals!PageNumber & " of " & Globals!TotalPages
August 27, 2009 at 6:19 am
Have you tried adding a text box to your list, with the desired header info?
jc
November 19, 2008 at 7:59 am
Try adding substring function to your date conversion before you add the to_number conversion, then perform your numeric operation, and filter on this new field:
to_number(
SUBSTR(TO_CHAR(SYSDATE, 'dd/mm/yyyy'),'dd/mm/yyyy'),1,2)
...
November 19, 2008 at 7:41 am
Try adding an expression on the textbox font properties - FontWeight property (SSRS 2005).
Something like:
=Iif(Fields!FIELD.Value= "1","Normal","Bold")
jc
November 12, 2008 at 2:01 pm
I'm sure you have moved on beyond this problem by now. However my users often report this phenomenon when the body dimensions extend (are wider than) the report layout...
November 12, 2008 at 6:53 am
Viewing 11 posts - 1 through 11 (of 11 total)