Hello,
I am dealing with .csv input files that list cost/amount for various components per month. Format is this:
month,cost: ABC, amount: ABC, cost: DEF, amount: DEF, cost: FOO, amount: FOO
2017-10,123.02,42,44.44,20,99.99,36
Is there a way to put it into a table like this:
Component | cost | amount
ABC | 123.02 | 42
DEF | 44.44 | 20
FOO | 99.99 | 36
Regards,
Kai.
... View more