Viewing 15 posts - 181 through 195 (of 290 total)
Hang on, nope everything looks fine there. However just notice in your original post you said you were doing a Tab delimited export so you'll want to put the...
October 16, 2015 at 6:47 am
Hi Awhicker,
It's known as a Byte Order Mark (BOM) and it indicates the text indicates the text is encoded as UTF-8. I've also found this issue when I import...
October 15, 2015 at 9:34 am
Hi David,
I've been spoilt by Enterprise Edition for a while now but I have used SSIS for this before and it requires a custom task.
Try https://reportgeneratortask.codeplex.com/.
There's a few about, but...
October 15, 2015 at 7:17 am
Hi Sternim,
You have to kind of dock the tablix to the rectangle, this can usually be done by moving the tablix over the rectangle after you have sent the rectangle...
October 15, 2015 at 4:12 am
October 15, 2015 at 3:48 am
If you are using Enterprise Edition then Data Driven Subscriptions would be the way forward here.
You define a script that it will run periodically and use any of the values...
October 12, 2015 at 7:33 am
This below link pretty much covers what I've been getting at, though they don't seem to encode the URL the same way. If you are getting the list of...
October 6, 2015 at 4:19 pm
Did you try:
http://myreportserver/ReportServer?%2fMy+Folder%2fMy+Report&rs:Format=Excel
October 6, 2015 at 3:30 pm
Hi fstop,
I don't think you can limit the drop down except with globally through the config, however there is no reason the URL access shouldn't work.
Couple of things to check...
October 5, 2015 at 9:52 am
This link should help a lot https://msdn.microsoft.com/en-us/library/ms188714.aspx but one way you can do the prompting on the command line is using "set /p" (I'm assuming you're on the command line...
October 2, 2015 at 9:08 am
Hi Aisha,
You can do this, just use an expression within the summary e.g.
=CountDistinct(Iif(Fields!StatusChangeRequest.Value Is Nothing, Nothing, Fields!TraineeID.Value))
October 2, 2015 at 3:04 am
I image it converts the null values to 0 for the comparison and short circuits to Red. Try this, also Switch is much cleaner then nested IIFs:
=Switch(
IsNothing(Fields!GrandTotalBillableRatio.Value), "Silver",
Fields!GrandTotalBillableRatio.Value >=...
October 2, 2015 at 2:57 am
Hi mschaper,
Could it as simple as changing your single quotes to double quotes? SSRS uses the single quote to start comments.
October 2, 2015 at 2:21 am
Are you parsing out the URLs from the rest of your text? SSRS wont just detect the URLs in the text box, and an action needs to be just...
September 22, 2015 at 9:57 am
The order of the parameters is significant. The order they are listed in the report data tool windows determines the order they are evaluated and displayed.
Select the parameter you...
September 22, 2015 at 9:01 am
Viewing 15 posts - 181 through 195 (of 290 total)