Hello Admin.
SELECT
"Year",
"Month",
"1st of Month",
"Zone Code",
"Zone Name",
"Zone Short Name",
SUM("Line Total INR") OVER (PARTITION BY "Zone Code") As 'Sales Actual',
SUM("Line Total INR") OVER (PARTITION BY "1st of Month") As 'Org Sales Actual'
FROM "Q Sales Invoice Data"
WHERE "Series Name" Not IN ('IV06', 'IV08', 'IV22', 'IV23')
AND ISNULL("Zone Short Name",'0') in ( 'Zone A', 'Zone B', 'Zone C', 'Zone D', 'Zone E', 'Zone F')
But when I'm executing query it's giving me below error
Parsing of Query failed, please check the syntax.
Kindly help me on this.
Thanks & Regards