Viewing 15 posts - 1 through 15 (of 18 total)
I tried attaching a screenshot of the report.
March 23, 2015 at 12:32 pm
This belongs in SSRS 2008, so I will move topic to that forum.
March 23, 2015 at 12:29 pm
The Facility parameter label, in a text box, shows correctly (value of 3 equals a specific Facility.Label, which is Facility Name, that is setup for the specific values in the...
May 19, 2014 at 12:36 pm
The data type of the Facility parameter is INT. The field values of Field1 and Field2 are numeric with 2 decimal places.
I even tried the following, for a check to...
May 19, 2014 at 11:06 am
All in all, upon lots of digging, I was able to find 3 records that were causing the problem. Two of the records had a dash, so trying to grab...
April 17, 2014 at 3:03 pm
Unfortunately, I am not working in a SQL Server 2012 environment to use try_parse. I did run the suggested script to break apart the Year, Month, and Day, and did...
April 16, 2014 at 2:34 pm
In your WHERE clause, you could try:
WHERE DATEPART(dw, getdate()) in (2, 3, 4, 5, 6)
That should give you only weekdays.
April 16, 2014 at 1:06 pm
While in and of itself, that statement suggested works fine, but when I try to put it into a CASE statement, it is still failing. That field I am trying...
April 16, 2014 at 12:52 pm
That worked!! That expression was written by a previous developer, and I was trying to modify it to get rid of the divide by zero error that would occur. I...
April 11, 2014 at 10:59 am
Yeah, I am running into an issue with a divide by zero error with the following:
=replace(round(((Sum(CDec(Fields!Field1.Value)))/(Sum(CDec(Fields!Field2.Value)))*100),2), "NaN", "0.00")+"%"
I tried to add an IIf statement, but I get an error stating...
April 11, 2014 at 10:17 am
I got it to go by adding CDec to the expression as follows:
=replace(round(((Sum(CDec(Fields!FIELD1.Value)))/(Sum(CDec(Fields!FIELD2.Value)))*100),2), "NaN", "0.00")+"%"
Gotta love expressions!!
April 9, 2014 at 3:29 pm
For the Text Box Properties > Number, it is listed under the Category of Percentage with 2 Decimal Places.
April 9, 2014 at 12:24 pm
I got it resolved. I forgot to remove the * from the end of the query that I was building, so I am not sure what it was that was...
April 3, 2014 at 10:48 am
That worked. I changed my CASE statement to look like the following:
case when ISNUMERIC(SRESULT) = 1 then
CASE WHEN CONVERT(int, SRESULT) between 0 and 500 THEN '2' --Green
ELSE '0'
END
It is now...
March 26, 2014 at 10:51 am
I was able to work through the issue, and can now get all of the rows to be inserted. The file that I was trying to import did not take...
November 19, 2013 at 12:14 pm
Viewing 15 posts - 1 through 15 (of 18 total)