OVER.......PEARTITION BU Query not working

OVER.......PEARTITION BU Query not working

Hello Admin.

I'm Using Partition By query in Zoho Query table below is query

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
Error Details:

Parsing of Query failed, please check the syntax.

Kindly help me on this.

Thanks & Regards