Viewing 15 posts - 751 through 765 (of 3,543 total)
Create a parent group and set the expression to
IIf(RowNumber(Nothing)<=10,1,2)
and set page break on the group
May 2, 2014 at 3:18 am
Normally this is done in the presentation layer, but if you must then
'$' + REVERSE(SUBSTRING(REVERSE(CONVERT(varchar,CAST(Finance_Report As money),1)),4,255)) AS [FinanceReports]
May 2, 2014 at 3:07 am
If FY_1 is a year and assuming it is an int datatype then use the following expression
=String.Format("Fiscal Year : {0}",Fields!FY_1.Value)
May 1, 2014 at 9:30 am
"yyyy" formatting only works with date datatypes
May 1, 2014 at 8:25 am
No. As I already stated you would have to use different values (and changing indicator ranges) to get MIN to work the way you want.
April 30, 2014 at 10:16 am
giszzmo (4/30/2014)
It looks like it works! Thank you so much! Can you explain to me why you use SUM instead of MIN?
Because MIN will not obey 0, -1, 1 order
If...
April 30, 2014 at 10:09 am
How about this
=Switch(Sum(IIf(IsNothing(Fields!Passed.Value), 0, IIf(Fields!Passed.Value, 0, 1)))>0,0,Sum(IIf(IsNothing(Fields!Passed.Value), 1, 0))>0,-1,True,1)
April 30, 2014 at 8:52 am
Try this
=Switch(Sum(IIf(Fields!Passed.Value, 1, 0))>0,1,Sum(IIf(IsNothing(Fields!Passed.Value), 1, 0))>0,-1,True,0)
April 30, 2014 at 8:07 am
Yes or Report Builder via web browser (if you have permission)
April 30, 2014 at 6:31 am
After
Dim readStream As New StreamReader(sr, Encoding.UTF8)
Add
MessageBox.Show(webResp.StatusCode.ToString)
MessageBox.Show(webResp.StatusDescription)
MessageBox.Show(String.Join(",", Array.ConvertAll(System.Text.Encoding.UTF8.GetBytes(readStream.ReadToEnd()), Function(x) x.ToString())))
This will give you three prompts, response status, response description and ascii codes for response buffer
April 30, 2014 at 6:20 am
Change
Dim respData As String = sr.ReadToEnd()
to
Dim...
April 30, 2014 at 5:26 am
Informer30 (4/30/2014)
Thanks for your replies....sorry for the lack of infomation..David, please can you advise further how I can achieve one ms excel report and 15 tabs via SSRS output?
Only avaliable...
April 30, 2014 at 5:22 am
DECLARE @Result char(4)
EXECUTE (@sql)
SET @Result = CASE WHEN @@ROWCOUNT=0 THEN 'Fail' ELSE 'Pass' END
UPDATE tableB SET [column] = @Result WHERE ....
April 30, 2014 at 3:04 am
When you post there is a button bottom right (Edit Attachments) that will allow you to add attachments.
If you could make a mock up of what you want it to...
April 30, 2014 at 2:39 am
;WITH cte (prefix,suffix,leftpart,rightpart,descrip) AS (
SELECT CASE WHEN LEFT(range2,1) LIKE '[a-zA-Z]' THEN LEFT(range2,1) ELSE '' END,
CASE WHEN RIGHT(range2,1) LIKE '[a-zA-Z]' THEN RIGHT(range2,1) ELSE '' END,
LEFT(range2,CHARINDEX('-',range2)-1),
SUBSTRING(range2,CHARINDEX('-',range2)+1,255),
descrip
FROM #temp),
cte2 (prefix,suffix,startno,endno,descrip) AS (
SELECT prefix,suffix,
CAST(REPLACE(REPLACE(leftpart,prefix,''),suffix,'') as...
April 30, 2014 at 2:31 am
Viewing 15 posts - 751 through 765 (of 3,543 total)