Viewing 15 posts - 1,516 through 1,530 (of 3,500 total)
Use an IF statement to determine if the value is 'Choice_Added', and overwrite the RowNumber value. Then filter on the very outside to eliminate the values you don't want.
June 5, 2017 at 5:48 pm
June 5, 2017 at 11:22 am
wendy elizabeth - Monday, June 5, 2017 10:43 AMSorry wrong thread.
Ha! Told ya Wendy and Diane are the same person.
June 5, 2017 at 10:57 am
Do you have a database diagram for this part of the database? It's hard to tell from the temporary tables how things are related, because there are so many foreign...
June 4, 2017 at 7:12 pm
Creating datasets is trivial. You have a connection (DataSource), and then you build a DataSet by executing a stored procedure against that DataSource and it returns your dataset. Then you...
June 4, 2017 at 10:44 am
This appears to work for the data provided:SELECT *
FROM test_table2 t2
WHERE t2.ID NOT IN (SELECT ID FROM test_table1)
AND t2.condition = 'Used';
June 4, 2017 at 12:28 am
As I see it, you have two options with the (CalendarID, StudentCounts) duplicates. If you don't need grand totals, you can leave them in your underlying dataset, and then just...
June 3, 2017 at 11:28 pm
I'm just going to snip off this piece... (this thing is mind-boggling!)
Bascially the counts are repeated a lot for the same calendared.
Could you show me how...
June 3, 2017 at 4:18 pm
Are you adding the data to a tablix? I can't tell from your report design. If you're doing that, you can just add a totals line outside the group(s).
June 3, 2017 at 1:03 pm
is there a way to check for page numbers that are even or odd?
MOD() ?=IIF(Globals!PageNumber MOD 2 = 0, "Even", "Odd")
June 3, 2017 at 9:17 am
In an existing ssrs 2008 report, I want to add final report totals. I...
June 2, 2017 at 11:43 pm
Oh, so you're a big fan of implicit conversion? Try it with a multi-million (or more) row table. Why not save yourself the trouble and make the parameter type match...
June 2, 2017 at 4:04 pm
You won't need the DISTINCT if you use a windowing function to remove the duplicates too.
June 1, 2017 at 11:22 pm
Use the standard ROW_NUMBER() OVER (PARTITION BY <grouping columns> ORDER BY <columns>) AS rn
to assign each duplicate a row_number and then filter for rn = 1.
June 1, 2017 at 10:27 pm
Yep, sounds like a permissions issue.
Okay, found an article here that's even better than the one I originally posted...
Execute As article.
June 1, 2017 at 10:12 pm
Viewing 15 posts - 1,516 through 1,530 (of 3,500 total)