Viewing 15 posts - 1 through 15 (of 99 total)
If I understand the requirement correctly, I have a possibility that has worked before. You create the "preview" version as the client wants to see it. On the...
September 23, 2011 at 9:26 am
You could add a subreport which contains the data and layout of the cover page and add it into the group (maybe as a new row at the top of...
September 23, 2011 at 7:36 am
Assuming you are passing the values into the new report as a parameter with the same name you should be able to display them the same way you passed them,...
September 23, 2011 at 4:49 am
When you are uploading RDL the Report tag in the XML file needs to match the version of the server. The error message you received says you using SQL...
September 22, 2011 at 10:16 am
Can you provide the full url (masking servernames if necessary)? I just tried this URL and it worked as expected:
September 16, 2011 at 8:27 am
For you second expression, in your comparison you need to state the field name for comparison in both parts so:
=Sum(iif(Fields!Exposure.Value >= 10000 AND Fields!Exposure.Value <= 25000, CDbl(Fields!Disbs.Value), CDbl(0)))
September 15, 2011 at 7:47 am
CDBL is converting your field to a Double data type. If you only need whole numbers and no decimals you could use CINT instead which would just convert to...
September 15, 2011 at 7:43 am
If you wanted to test for existence of Swedish characters anywhere within the string you would use the INSTR function.
Ex. =InStr(Fields!Description.Value, "car")
You can only test for one specific character at...
September 15, 2011 at 4:44 am
You could create another sort and use an expression like:
=IIF(LEFT(Fields!FieldsName.Value, 1) in (Å, Ä, Ö), 2, 1)
This sort should be placed in front of your other sort, so all normal...
September 14, 2011 at 2:12 pm
You can also try changing the expression around:
=SUM(IIF(Fields!Exposure.Value<10000, Fields!Disbs.Value,0))
Does this work for you?
September 14, 2011 at 12:12 pm
I may be misreading the table structure and question, but don't think this is a recursive or self-join question. I think it's a simple join.
You should be able to...
August 30, 2011 at 7:48 am
I am not sure I fully understand the challenge. If your expression is in the master report, setting up the drill through is relatively similar. Your question specifically...
August 30, 2011 at 7:14 am
Typically when I start working with custom code I don't try biting off the whole thing at once. Inevitably you miss something small and nothing works and it takes...
August 29, 2011 at 1:54 pm
Viewing 15 posts - 1 through 15 (of 99 total)