Skip to content

Instantly share code, notes, and snippets.

@nickgs
Created November 25, 2013 22:13
Show Gist options
  • Save nickgs/7649863 to your computer and use it in GitHub Desktop.
Save nickgs/7649863 to your computer and use it in GitHub Desktop.
Landed cost item allocation
//our landed costs
ocn = 1000
fsc = 75
//our material cost
material_cost = 1000
unit_landed = (ocn / material_cost) + (fsc / material_cost); //this summation would loop for each cost code.
//unit_landed will be $1.075 a unit in this example.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment