Viewing 15 posts - 2,086 through 2,100 (of 3,489 total)
Thanks for the create table/insert scripts. That helps a lot. One more thing, though. Could you post your expected output? Is the age of the dog significant...
February 9, 2016 at 8:06 pm
where? Why not re-post the whole thing?
<DDL statements to create tables>
<DML to get at least part of the way there>?
February 6, 2016 at 5:46 pm
If you're only using one dataset, you could have several tablixes on your report and do different summaries in each one. No need to nest at all. I did...
February 4, 2016 at 2:43 pm
if (the validkey in error table is present in the lookup table)
then
update the record
else
exit
UPDATE Table1
SET Field = <something>
WHERE Table1.Field1 = Table2.JoinField
February 2, 2016 at 4:27 pm
This worked for me:
=RIGHT(Fields!School.Value,LEN(Fields!School.Value)-InStr(Fields!School.Value," - ")-2)
February 2, 2016 at 12:28 pm
the easiest way is to sort in descending order (and maybe filtering out unplayed games). Something like:
-- top 4 could be ANY number...
SELECT TOP 4 *
FROM (
SELECT 'W'...
February 1, 2016 at 9:23 pm
You need INSTR
=Right(Variables!TheSchool.Value,Instr(Variables!TheSchool.Value," - ")+3)
February 1, 2016 at 2:07 pm
Looks like all you need is a deliberate cross join... it will multiply one table by the other (all possible combinations of the two)...
Something like this:
SELECT nt.ID
, cp.City
...
January 31, 2016 at 2:48 pm
What if you remove the page break on the last report?
January 29, 2016 at 1:58 pm
This looks like a matrix or tablix from your description. Could you post some sample data so we can mock up what you're working with? It's just really hard...
January 28, 2016 at 6:28 pm
What happens if you set a page break after each tablix except the last one?
January 28, 2016 at 4:47 pm
Viewing 15 posts - 2,086 through 2,100 (of 3,489 total)