Viewing 15 posts - 2,731 through 2,745 (of 3,480 total)
Not sure I understand. Do you mean you don't want the chart to print, but still be visible on the screen?
Looks like this article should give you at least...
December 22, 2014 at 8:41 pm
Post what you tried.
And while you're at it , could you explain how the logic works to generate what you're describing? I have no clue how you got from your...
December 22, 2014 at 7:38 pm
You can probably do that following the examples in Jeff Moden's article. http://www.sqlservercentral.com/articles/T-SQL/63681/
I would be nice and work on it, but it's almost 2 AM here... start there and if...
December 22, 2014 at 12:43 am
Do you have any control over the underlying database? The fact that you have a bunch of data coming from different tables makes me wonder if if they underlying...
December 20, 2014 at 11:25 pm
Thanks for posting the data, but if you could post it in consumable format, then people could help you a lot easier - and you would get tested solutions. ...
December 20, 2014 at 4:54 pm
Super cool!! That should fix it. Definitely a solution I will have to keep in my bag of tricks.
Thanks!
Pieter
December 18, 2014 at 6:37 pm
Seriously?
SELECT Column1, Column2, Column3
FROM Table1
WHERE Column1<12 -- another random filter
UNION ALL
SELECT Column4, Column6,Column2
FROM Table2
WHERE Column3 != 2 -- random filter
the columns have to be union-compatible, and there must be...
December 18, 2014 at 9:21 am
First off, I don't think having PivotTables in Excel and having reports in SSRS are mutually exclusive. That said, there are a ton of tutorials on YouTube that cover...
December 17, 2014 at 3:51 pm
The only rule is this:
1. Symptom names are always in uppercase.
The next column is usually Causality[n]
3. The column after that is Relatedness[n].
So a table could look like this:
CREATE TABLE BadTox...
December 17, 2014 at 2:32 pm
I could be wrong, but if you want all possible combinations of ProductID and each date/time value from the existing query (well, what others have helped build), you would create...
December 14, 2014 at 2:24 am
If you are allowed to write your own stored procedures for reporting, I would do it there. You could pass a value for the units to the DATEDIFF function,...
December 9, 2014 at 12:11 pm
--Excel 2007-2010
SELECT * --INTO #productlist
FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
'Excel 12.0 Xml;HDR=YES;Database=C:\temp\Products.xlsx',
'SELECT * FROM [ProductList$]');
December 9, 2014 at 10:35 am
But that way, the teacher will know he was cheating, because he won't be able to explain how it works.
December 8, 2014 at 9:55 pm
I'm getting closer...
try something like this:
SELECT phone
, FixPhone
, LEFT(FixPhone,1) + '-(' + SUBSTRING(FixPhone,2,3) + ') ' + SUBSTRING(FixPhone,5,3) + '-' + SUBSTRING(FixPhone,8,4)
FROM (
SELECT phone
, CASE WHEN LEFT(phone,1)='1' THEN REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(phone,'(','.'),')','.'),'.',''),'-',''),' ','')
ELSE...
December 7, 2014 at 7:13 pm
Maybe this article will help get you sorted out
December 7, 2014 at 12:41 pm
Viewing 15 posts - 2,731 through 2,745 (of 3,480 total)