Viewing 15 posts - 511 through 525 (of 3,543 total)
Use Jeff Moden's splitter (see Alan's signature) to split the column, LEFT join your correction table and USE FOR XML to concatenate the result (using either the replacement text or...
May 29, 2015 at 7:05 am
Providing SQL Server has the correct permissions and access to the file you could install and use AccessDatabaseEngine to get data from the spreadsheet like this
OPENROWSET (
'Microsoft.ACE.OLEDB.12.0' ,
'Excel...
May 28, 2015 at 7:03 am
Jeff Moden (5/28/2015)
Shifting gears, glad to see you still hang around here, ol' friend.
Back at ya ol' friend 😀
Yeah still around :w00t: mostly lurking, occasional post
Lot of OP on heavy...
May 28, 2015 at 6:06 am
Jeff Moden (5/24/2015)
May 28, 2015 at 2:00 am
Sean Lange (5/21/2015)
cunningham (5/21/2015)
soooo this is where you lot go to blow off steam!Yes indeed!!! Welcome to the "water cooler" commonly referred to as "the thread". 😀
Meh! The water is...
May 21, 2015 at 7:46 am
ScottPletcher (5/19/2015)
Select FROM the job table and user LEFT OUTER JOINs on the other two tables.
Providing they are 1:1 relationships otherwise you would get a cartesian result
May 20, 2015 at 7:11 am
Use a Tally table (there is an article on this site by Jeff Moden)
SELECT ROW_NUMBER() OVER (ORDER BY a.id,t.N),
a.from_country,a.to_country,a.noofdays,DATEADD(day,t.N-1,a.datetravel)
FROM #table a
JOIN dbo.Tally t ON t.N BETWEEN 1 AND a.noofdays
May 19, 2015 at 7:17 am
That's an Access query and you need to answer Phil's question or even better supply complete table definition
If the column is varchar then
"SELECT tblSchoolYear.SchoolYearTitle" & _
" FROM tblSchoolYear" & _
"...
May 19, 2015 at 7:01 am
Use two rows, one with two images the other with one image and use row visibility
May 15, 2015 at 6:44 am
Use one tablix with two rows
row 1 two columns legend+map
row 2 one column (merge cells) map
and use row visibility
May 14, 2015 at 6:39 am
In that case you use the following expression in a textbox
=Switch(
Fields!Errorcode.Value = 1, "Error 1",
Fields!Errorcode.Value = 512, "Error 512",
Fields!Errorcode.Value = 1024, "Error 1024",
True,"Unknown Error")
May 12, 2015 at 7:41 am
Create another dataset in the report that uses SELECT and UNION ALL to generate a list of Errorcode and ErrorDesc
In the relevant textbox of the report set the expression to...
May 12, 2015 at 7:04 am
The first line in fig 2 should be
=IIf(Fields!Customer_Name.Value Is Nothing, "", Fields!Customer_Name.Value) + chr(13) + chr(10)) +
Why are you removing First for CustomerName but using for Address?
May 11, 2015 at 5:54 am
Try directing the pipeline to the Out-File cmdlet
Not actually tried it but something like this
Write-Output ("Upload of {0} succeeded" -f $transfer.FileName) | Out-File c:\output\test.txt
*Edited*
You will need to include -append
April 30, 2015 at 6:40 am
Brandie Tarvin (4/29/2015)
April 29, 2015 at 9:48 am
Viewing 15 posts - 511 through 525 (of 3,543 total)