Viewing 15 posts - 1,171 through 1,185 (of 3,509 total)
That looks normal. You don't have any filters on the subreport, do you?
What happens if you make the parameters for the subreport visible (temporarily) and open it by itself?...
December 4, 2018 at 12:15 pm
Why not use LAG() to get the previous ship date for a tracking number? This is ugly, but I think it'll work:SELECT x.tracking_number
, x.ship_date
,...
December 4, 2018 at 12:07 am
This is close...
CREATE TABLE #tblA (
Yr INT
,Title CHAR(3)
,Country CHAR(2)
,Age TINYINT
);
CREATE TABLE #tblB (
Yr INT
,Title CHAR(3)
,Country CHAR(2)
,Age TINYINT
December 3, 2018 at 8:36 pm
This sounds like a job for PowerShell
https://community.spiceworks.com/topic/468653-powershell-script-to-remove-the-password-never-expires-in-ad-to-users-in-a-file
December 3, 2018 at 1:23 pm
You'd be able to tell because when you drop the field on the wrong report, you'd get something like
= FIRST(DataSetName!FieldName.Value)
instead of just the fieldname.
=FieldName.Value
I...
December 3, 2018 at 12:11 pm
I used to work in healthcare, so I totally understand the confidentiality stuff. (Taking the Good Clinical Practices exam after looking at what they were doing nearly gave me a...
December 3, 2018 at 10:42 am
What kind of visual are you using for the subreport? Is it a tablix? I would test it by creating a simple tablix and populating it and see if you...
December 3, 2018 at 9:43 am
Why can't you use a function?
I'd use DelimitedSplit8K and be done... Why the arbitrary requirement? Is this a class assignment or something?.
December 1, 2018 at 1:16 am
Not sure how you would end up with only one record in your subreport. Are you using a parameterized stored procedure as the source for your subreport's dataset? Does the...
November 30, 2018 at 5:30 pm
You probably have to shrink it, but then you'll have to rebuild all the indexes... Good thing it's Friday... might be done by Monday.
November 30, 2018 at 2:10 pm
November 29, 2018 at 6:26 pm
November 26, 2018 at 9:04 pm
If you don't use a date in tabular model, you can't mark the column as a date, so you can't use a lot of the built in time intelligence functions......
November 25, 2018 at 9:49 am
Viewing 15 posts - 1,171 through 1,185 (of 3,509 total)