I am using the SUM OVER PARTITION formula in Netsuite transaction saved search to get the running total of item quantity.
SUM /* comment */ {quantity} OVER(PARTITION BY {item} ORDER BY {trandate} ASC ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)
The formula works but it duplicates each row as shown below. Each transaction # of the item appears twice here
Any advise on how can I correct this?