Thwacksters,
Hope you can help i have a SQL query custom chart that works just perfectly in NPM 11.5.2 but coming to NPM 12 and running the same custom chart its failing and asking me to specify a Data Series as below (this inst complaing in NPM 11.5.2)
The query:
This just returns every triggered alert 3 months ago and groups the values by day.
SELECT DATEADD(dd, DATEDIFF(dd, 0, TimeStamp), 0) AS 'Time',COUNT(*) AS [triggered]FROM AlertHistoryView ahv with(nolock)WHERE EventTypeWord = 'triggered' AND (TimeStamp > DATEADD(Mm,-3,getdate()))group by DATEADD(dd, DATEDIFF(dd, 0, TimeStamp), 0)
The problem is now if i try and re create my chart i get this dude..

Can anyone point me in the right direction for this i am completely happy with SQL but this data grouping is playing with me becase my grouping is done in the group by i guess :-/
Cheers