Created
November 25, 2013 22:13
-
-
Save nickgs/7649863 to your computer and use it in GitHub Desktop.
Landed cost item allocation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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