Esta é uma pergunta frequente. Você precisará usar uma instrução Invantive SQL, que soma as quantidades e os valores do diário de vendas no Razão do Exact Online. Seria semelhante a algo assim:
select tle.division
, tle.financialyear
, tle.financialperiod
, tle.itemcode
, tle.item
, itm.class_01
, itm.class_10
, sum(tle.quantity) quantity
, sum(tle.amountdc) amountdc
from transactionlines tle
join exactonlinerest..items itm
on itm.id = tle.item
where tle.journalcode = '70'
and tle.itemcode is not null
and tle.financialyear = 2017
and tle.financialperiod = 3
group
by tle.division
, tle.financialyear
, tle.financialperiod
, tle.itemcode
, tle.item
, itm.class_01
, itm.class_10
order
by tle.division
, tle.financialyear
, tle.financialperiod