Viewing 9 posts - 1 through 9 (of 9 total)
http://www.idautomation.com/reporting_services/barcode_cri/UserManual.html
visit the above link
April 13, 2009 at 4:38 am
N does user have sufficient right now to perform the operation?
March 16, 2009 at 3:47 am
Hey Try This!
select * from
(
SELECT EntityID, Property, MAX(CASE WHEN fromDeleted = 1 THEN Value END) AS OldValue,
...
March 3, 2009 at 11:41 pm
And to pass the parameter
select the parameters tab there and pass the department value there.
Make sure ur subreport query contains a parameter otherwise parameter will not pop up...
February 20, 2009 at 5:37 am
helo DP
its as simple as that
On the text box properties of your(Department field)
go to "navigation" part
-->select jump to report
-->select the particular subreport in the dropdown u want to navigate to.
Thats...
February 20, 2009 at 5:31 am
neeraj is quitre right there about passing parameter in sub report.
Also to enable the drilldown u can toggle the visibility of subreport upon the textbox which contains ur dept. info.
Hope...
February 19, 2009 at 10:21 pm
Hey Try This One Instead:
create table #t (num int)
declare @STRvarchar(500)
select @STR = '4,2,7,7834,45,24,45,77'
declare @sql varchar(8000)
select @sql = 'insert into #t select '+
replace(@str,',',' union all select ')
exec...
February 19, 2009 at 5:30 am
Try This:
select b.sum1,sum(a.sum1) as cum_sum
from temp a,temp b
where a.id <= b.id
group by b.id,b.sum1
--where cum_sum will be your cumulative sum
February 18, 2009 at 5:19 am
Viewing 9 posts - 1 through 9 (of 9 total)