Viewing 15 posts - 226 through 240 (of 285 total)
What should be height and weidth?? can you please specify???
June 14, 2012 at 10:23 am
Thnk you all for the suggestions.It works now.
June 14, 2012 at 9:43 am
ya..that the reason I took (SELECT * FROM dbo.SplitParameterValues(@Team,'|')))
But while filtering my report , in drop down it is passing value like'A,C,D,.......'
which is not working.
June 13, 2012 at 2:13 pm
I have team name something like below
'Pegasus Texas Construction, LP'( which is one word)
declare @team varchar(max)
Set @team ='Pegasus Texas Construction, LP'
so i cannot take
(select * from dbo.SplitParameterValues(@Team,','))
June 13, 2012 at 1:33 pm
Anyways I took round ()off to get avg time in minutes in ssrs exp
June 7, 2012 at 4:04 pm
yes...I converted your sql expression to SSRS expression , but getting avg minutes:2259:33333:(
June 7, 2012 at 4:00 pm
if we can convert hours to mins and then take average of it??? in expression??
June 7, 2012 at 3:35 pm
trying taking:
parameters :
start_time END_time
2012-05-17...
June 7, 2012 at 3:15 pm
Acieving thru function:
ALTER FUNCTION [dbo].[Usp_GetHoursMins1]
(
@para_start_time varchar(30),
@para_end_time varchar(30)
)
RETURNS VARCHAR(20)
As
BEGIN
-- Declare the return variable here
DECLARE
@hrs_min as varchar(20),
@total_time as int,
@datecalc as datetime,
@iDateCnt as int,
@minutesleft as int,
@hours as int,
...
June 7, 2012 at 3:10 pm
I created pagination in my report to show 100 records per page.
also craeted groups in my report.So, when i filter my report by some parameter...it shows extra pages even if...
June 7, 2012 at 12:45 pm
it is just showing #error while in preview mode.
My satrt and end date is datetime.Is that because of datetime???If so, how to calculate average days between 2 datetime values???
May 30, 2012 at 10:39 am
As per your query we are getting recent datetime and if it is enrollment analyst then assigning it as "complete" if not "pending".But I need a query which checks next...
May 24, 2012 at 1:26 pm
Gone through rules...the query is not working as per rules I posted:(
May 24, 2012 at 9:53 am
Viewing 15 posts - 226 through 240 (of 285 total)