Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to import data from a csv file which have is similar to following table:
This file already contains first five columns of table shown above. I need a calculated field "Sales Amount" which should be calculated like :
Sales Amount = (Qty x Price ) + Postage
But Problem i was facing is that for orders in which there are multiple skus/items for example order id 1002, in which there are two skus/items (i.e S001, S002). Even though customer has paid only $6 Postage it's showing against both items which results into inflating the total "Sales Amount". In excel we can use following formula to resolve the issue and divide the postage equally to all skus/items :
=(C2*D2)+(E2/COUNTIF(A:A,A2))
I am wondering how i can achieve the same in Qlikview dataload editor script, Appreciate if someone can help/guide me.
Thanks
I apologize for the inconvenience, but would you be able to share this as an Excel file?
hi,
i have almost resolved the problem, need one little help can you guide my how can i convert this "measure" calculation code to data load editor code :
([Carriage Amount]/Count(DISTINCT TOTAL <[Order ID]> [SKU]))
so I can load it as calculated field instead of a measure.