Hello,
I'm trying the new report builder tool, and I get a screen saying it's an evaluation version:
"About EMS QueryBuilder" ... "Evaluation version"
Also when I try to load a custom report, it gives the error "Invalid token '(' at position 16 of line 1.
Here's the affected report (it gives me the number of installations by month):
SELECT TOP (100) PERCENT YEAR(DateAssigned) AS Year, MONTH(DateAssigned) AS Month, COUNT(*) AS Instalations
FROM dbo.tblCustInventoryNew
GROUP BY MONTH(DateAssigned), YEAR(DateAssigned)
ORDER BY Year, Month
Thanks, and congrats for the great work!
😉