Hi I am trying to desing timeline chart using a range chart using this tutorial
the example sql query(for task 134) is:
SELECT HT.[NumTarea] as TaskId ,HT.[NumEstado] as TaskStateId ,ET.Estado as TaskState ,TU.UsuarioAsignado as ITuser ,substring(TU.[Requerimiento],1,20) as TaskName ,[Fecha] as StartDate ,DATEADD(MI,Duracion,[Fecha]) as EndDate ,[Duracion] as Duration ,DAY([Fecha]) as Dia FROM [Paipote].[dbo].[PT_HistorialTareaUsuario] HT INNER JOIN [Paipote].[dbo].PT_TareaUsuario TU ON HT.NumTarea=TU.NumTarea INNER JOIN [Paipote].[dbo].PT_EstadoTarea ET ON HT.NumEstado=ET.NumEstado where UsuarioAsignado='jcolman' and Month([Fecha]) in (5) and DAY([Fecha]) IN (17) and HT.NumEstado in (1) and ht.NumTarea=134 --@DIA order by ht.NumTarea
The result set for the query have 4 data range but the report only shows the first one like the image below
The report its configured like this:
So I dont understand where is the issue , thanks in advance.
PD: I am using BIDS 2008 SSRS , MSSQLSERVER 2008.