Viewing 15 posts - 2,641 through 2,655 (of 3,480 total)
One of these should do it:
http://www.sqlusa.com/bestpractices/training/scripts/commadelimitedlist/
February 26, 2015 at 3:57 pm
Most if this is trivial once you set up the calculated column/field/whatever you call it in the dataset. Then anywhere you want to show this value, you'd use the...
February 26, 2015 at 12:41 pm
You could set the Fill color of a cell using something like this:
=IIF(Previous(Fields!Company.Value)=Fields!Company.Value,"Red","Transparent")
February 25, 2015 at 9:46 pm
Here's how I did it.
Steps:
1. addd a tablix to your report.
2. Add Company, PurchaseOrder, PurchaseDate fields to the tablix.
3. Right-click the body line (with the lines).
4. Add Group: Parent Group
Group...
February 25, 2015 at 7:19 pm
If you're in your dataset, you'd create a calculated column and use IIF(Parameters!MyParam="9999","ShowThis","Show That") Then just use the calculated value instead of the numeric value. Then you can...
February 25, 2015 at 5:03 pm
ROFL... maybe I need a binary calendar?
February 24, 2015 at 9:55 pm
not near enough information to help. How old is your latest backup? Do you have your transaction logs somewhere? what recovery model are you using?
February 21, 2015 at 1:57 pm
Easiest way is to use a Calendar table and do the math in a stored procedure. Then base the report on that.
February 20, 2015 at 3:49 pm
You tried grouping? Keep at it... that was the right direction.
SELECT ID
, MAX(Lang1) AS Language1
,MAX(Lang2) AS Language2
,Max(Lang3) As language3
,MAX(Lang4) AS Language4
FROM
(SELECT 1001 AS ID, Null as Lang1,'Japanese' as Lang2,Null As...
February 19, 2015 at 11:25 pm
Cool! Thanks for the report.
February 19, 2015 at 3:51 pm
What I found is that multi-valued parameters just plain don't work the way I expected them to. They work fine if you're stuffing them in an IN() clause in...
February 19, 2015 at 1:52 am
Looks like the simple answer to this is to use 3 separate Boolean parameters instead of one Multi-valued integer.
Just to test my theory, I tried creating a multi-valued parameter and...
February 18, 2015 at 7:48 pm
since your result looks like a matrix, I just have to ask - what does your underlying dataset look like? (or the table in question).
If your data table isn't normalized...
February 17, 2015 at 1:48 pm
Come to think of it, you might want to look up Doug Steele's DSNless connection code for Access. (Not entirely sure it works for SQL Server, but I don't see...
February 16, 2015 at 3:21 pm
You should be able to relink the tables to SQL Server.
If you use integrated security in SQL Server (so Active Directory handles authentication), you would just have to create groups...
February 16, 2015 at 2:42 pm
Viewing 15 posts - 2,641 through 2,655 (of 3,480 total)