Viewing 15 posts - 91 through 105 (of 200 total)
I would still expect to get this error with empty data, because LEN(0)-6 will still result in the RIGHT function being passed a negative number. Both examples below will...
December 7, 2016 at 3:27 pm
I don't know about the second error, but when I've encountered "Invalid length parameter passed to the RIGHT function" it usually means I've got some anomalous data that's smaller than...
December 7, 2016 at 2:49 pm
Here are a couple of articles to peruse:
December 6, 2016 at 2:00 pm
Linked server double-hops (from 3 to 2 to 1) are more complicated to set up than single hops. This [/url]link has more detail. Also, make sure you're setting...
November 30, 2016 at 4:24 pm
For question 1, we use Active Directory permissions groups to assign access to folders in SSRS (in Folder Settings -> Security). For instance, the Accounting AD group has access...
November 30, 2016 at 3:56 pm
You can usually optionally ignore parameters by adding in something like "OR @param IS NULL" which returns all results. If you have multiple parameters that can be NULL, though,...
November 30, 2016 at 1:02 pm
Make sure the parameter is set up in the subreport properties. In the main report, there will be a cell for the subreport. Right-click on that and check...
November 16, 2016 at 3:21 pm
It basically says if there are no rows, hide the tablix. In general, visibility expressions are formatted "IF X, Do this, Otherwise do that." True means hide, False...
November 15, 2016 at 5:43 pm
To spell it fully out, here is what I would do (based largely what you have suggested):
1. Have two tablixes, which we'll call 999 and Not999
2. Set the header to...
November 15, 2016 at 5:26 pm
It would be formatted differently than your desired example, but if you just add total rows for your Quarter group, you should get something like:
Quarter Month Passed Failed
------- ----- ------...
November 10, 2016 at 5:47 pm
A few quick hypotheses off the top of my head:
1. A filter in the report tablix might be removing the results
2. A visibility expression in the group/tablix might be hiding...
November 10, 2016 at 2:01 pm
The only suggestion I can offer at this point is trying to stagger the SSRS subscriptions to minimize the concurrency. Maybe if just five of them fire off each...
November 10, 2016 at 1:45 pm
I'm not sure about stored procs, but this should get you started in determining which tables are replicated:
SELECT NAME, is_replicated, is_published
FROM SYS.TABLES
WHERE
TYPE = 'U'
AND (IS_REPLICATED =...
November 10, 2016 at 11:37 am
Yes, you should be able to control headers for each tablix. Then in the Visibility properties for each tablix you could have an expression like "=milestone_code =999" or "=milestone_code...
November 10, 2016 at 10:32 am
Your solution is the way I'd do it, Wendy. I'm not aware of an expression for repeating headers (just a true/false), but I'd be interested if someone knows otherwise.
November 9, 2016 at 5:02 pm
Viewing 15 posts - 91 through 105 (of 200 total)