I have a listing of a couple of thousand skus and their national total inventory quantity by month.
For budgetary purposes I need to partition the national totals into four warehouses.
I know the BP proportion by whse by sku.
I can simply calculate the individual whse quantities using a formula into four separate columns
(the final table needs to include time parameters eg skuwhsemonth*week qty)
But I need to transform the table essentially from landscape with one row for each sku and four whses and 12 months per row into a portrait table where there are rows per sku per month per week each with one whse value
so: (ignoring the time parameter)
From:
SKU1 National 100
To:
SKU1 WhseAA 15
SKU1 WhseBB 45
SKU1 WhseCC 25
SKU1 WhseDD 15
I have a couple of techniques I use to do this transformation depending on the scale but methinks they are just clunky either with c&p or with pivot tables. There must be a SDMB Excel user who has a nifty technique to perform the task more efficiently and elegantly.