Graphique de type Calibre
utiliser la fonction FLOOR pour faire fonctionner les graphiques de type Calibre
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[CAOBJECTIFMOIS]
AS
SELECT
vent_UserId, month(vent_CreatedDate) as Mois, floor(Sum(vent_AteCAHT)) as CA,floor(obje_AteCA) as obje_AteCA
From VENTES inner join objectifs on vent_UserId =obje_UserId and month(vent_CreatedDate)=month(obje_AteDate)
Group by vent_UserId, obje_AteCA, month(vent_CreatedDate)
GO