Click here to Skip to main content
16,004,977 members

Comments by bilawal121 (Top 21 by date)

bilawal121 13-Mar-12 4:24am View    
oops but problem is not this sir
bilawal121 13-Mar-12 4:21am View    
next page is open in same tab not seperate tab, ok i agree with you but tell me how to share session between two web applications through Stateserver
bilawal121 27-Feb-12 1:50am View    
SELECT YEAR (DATE_RECIEVING) As [Yearnumber],
SUM( case current_status when 'Open' then 1 else 0 end ) as 'Open',
SUM( case current_status when 'Close' then 1 else 0 end ) as 'Closed',
SUM( case current_status when 'Pending' then 1 else 0 end ) as 'Pending',
SUM( case current_status when 'In Progress' then 1 else 0 end ) as 'InProgress',
SUM(1) as 'Total' from FileRegister group by YEAR(date_recieving)

this give me the result for one year like 2012 but i want as i mentioned
bilawal121 23-Feb-12 0:47am View    
in my table named FileRegister there are 5 fields id,fileno,title,currentstatus and daterecieving.
when user input 2012 year the report only show the data for those which in datereceiving.
bilawal121 22-Feb-12 1:08am View    
Thanks for your reply and it works for me but now how i show this on my report design??
i name each colum of report design open,close,pending and inprogress and in field column i write experession that give me error,
i write this expression
=Fields!CURRENT_STATUS.Value="Open"
=Fields!CURRENT_STATUS.Value="Closed"
=Fields!CURRENT_STATUS.Value="Pending"
=Fields!CURRENT_STATUS.Value="inprogress"