Viewing 14 posts - 16 through 29 (of 29 total)
Jeff Moden (5/10/2012)
May 11, 2012 at 2:28 pm
Yes, that's correct. They are 2000. They will eventually be upgraded to 2008, but I am stuck working with this until that time.
May 10, 2012 at 4:48 pm
Hmmm, ok. What about leaving the text box to the default and just doing the math with your fields? Does that error or give you a result (other than NAN...
May 10, 2012 at 3:07 pm
Also, division by zero could give you an NAN. Try doing a conditional statement using something like this:
=IIF(Fields!YourData.Value > 0,Fields!YourData.Value/Fields!YourOtherData.Value),0)
You might need two statements if both of your fields can...
May 10, 2012 at 12:44 pm
I definitely think the datatype could be preventing you from just setting the text box properties to percentage.
May 10, 2012 at 12:39 pm
What's the datatype in that field? What does it look like? .0895? 1234? Let me know.
May 10, 2012 at 12:36 pm
I didn't think you were trying to irritate me, Sean. To be faire, I did initially include most of the details you requested. I know that it's not easy to...
May 10, 2012 at 12:32 pm
It's a direct query. I'm using it to create a report in SQL Server Reporting Services that will be posted to a report server.
I've tried one more thing (which is...
May 10, 2012 at 12:28 pm
Ah, that clears things up (unfortunately).
Thanks for the info.
May 10, 2012 at 11:57 am
Yes, which is unfortunate. And it makes absolutely no sense, because the other set of claims tables are set up with just the 12 of the ID and indexed as...
May 10, 2012 at 11:25 am
Sean Lange (5/10/2012)
Things like what does the table look like?
Like I said, it's de-normalized. It has fields like ID, Value1, Value2, Value3...Value12, where Value should be in its own...
May 10, 2012 at 11:06 am
I'm confused. I did provide information. I'm not sure what else you need for my specific issue?
The part that I'm having issues with is passing a parameter with a wildcard...it's...
May 10, 2012 at 10:38 am
I've never encountered any issues with having the parameter with or without parenthesis.
The problem is that having the parameter all by itself will return the results without issue, but adding...
May 10, 2012 at 9:23 am
I had the EXACT same problem. I've got a main report off of a SQL server, and a subreport off of an Oracle server. After finally finding that SSRS needs...
April 12, 2012 at 12:32 pm
Viewing 14 posts - 16 through 29 (of 29 total)