Viewing 12 posts - 61 through 72 (of 72 total)
Try running the stored proc in SSMS using WITH RECOMPILE. Sometimes RS gets hung because it's trying to use an old execution plan after the output of a proc...
September 20, 2010 at 9:26 am
Try putting the chart in a list control where the list control is bound to the offices. The chart should bind to each office's data as it loops through.
September 20, 2010 at 9:06 am
da-zero (9/20/2010)
September 20, 2010 at 8:45 am
I also favor sprocs wherever possible. Another advantage of sprocs is that you can check the task's output without having to open the package in BIDS. Otherwise, you...
September 20, 2010 at 8:25 am
A group footer using the territory as the scope should get you the sub-total rows. I've made reports with dynamic columns and that structure doesn't seem to interfere with...
September 17, 2010 at 2:33 pm
You might be mixing data types. Try this:
=IIF(Fields!Product.Value = 98, " ", CStr(Fields!Product.Value))
A blank space can't be implicitly converted to an int.
September 17, 2010 at 2:04 pm
Here's a guess (and it's only a guess): Enter all the search strings into one box -- e.g., "234, 121, 203, 119". That string gets passed to a...
September 17, 2010 at 10:49 am
I think dbowlin has a good solution. If the consumer is picky about appearances, you can add an empty group footer with no borders. The tablix will render like...
September 17, 2010 at 9:01 am
Go to the tablix properties and under the No Rows section, type whatever message you want to display in the NoRowsMessage property. This will hide the table completely and...
September 17, 2010 at 8:54 am
Thanks, Dan. That's good advice. I should add that I'm not thinking of leaving my job. Rather, I see this as an opportunity to learn an important...
September 2, 2010 at 12:09 pm
Over time you’ll become more valuable, because you get more done, and because your tasks run smoothly.
More valuable, yes, but to whom? The only person you can truly count...
July 21, 2010 at 10:11 am
I passed the exam yesterday. The MS Press Training Kit was helpful but, for a number of questions, didn't go into enough detail to cover the actual exam questions. ...
January 31, 2010 at 8:44 am
Viewing 12 posts - 61 through 72 (of 72 total)