K M Mahmud Hasan’s Website Rss

Some thoughts....

graphicarts This page contains my Notes and slides for the classes, I am and will taking in Graphic Arts Institute . Just right click and then click save as and save into your drive.   PowerPoint PowerPoint...

Read more

7 Functions of Human Resource Management This is broadly defined as any part of the management structure relating to people at work. It involves everything from recruitment to training to performance appraisal and overall employee welfare. HRM...

Read more

Special Topics in Training and Development Orientation A formal process of familiarizing new employees with the organization, their jobs, and their work units. Benefits: 1.Lower turnover 2.Increased productivity 3.Improved employee...

Read more

Foreign Bribery -- bribery condemned and illegal in many countries, yet practiced widely -- is it ethical to give into demands of bribery? ("when in Rome, do asthe Romans do?") ∙  What is bribery?...

Read more

Briefly explain the two types of informal communication... Three main characteristics of a grapevine: First, it is not controlled by management. Second, it is perceived by most employees as being more believable and reliable than formal communiqués....

Read more

Inventory Freight Calculation

Category : Tips and Tricks

To account for freight on incoming inventory, I allocate the freight charges proportionately over the inventory items by total value. Quickbooks doesn’t have a way to handle that, so I use a simple Excel spreadsheet to do the calculation.

inventory freight calculator

The last entry is always the freight (or handling or whatever I want to distribute). I don’t have much information here because it’s just a throwaway calculator. I get the numbers I need for data entry from the Totals column and don’t save the workbook.

I start by making a couple of defined names. First, ‘Freight’ is defined as =OFFSET(Sheet1!$B$2,COUNT(Sheet1!$B:$B),0).

It picks the last used cell in the Line Items column. It starts at B2 and COUNTs down the number of filled cells. Note that I don’t use COUNTA because I don’t want to count B2, which is text.

Next I define ‘LineItems’ as =OFFSET(Sheet1!$B$2,1,0,COUNT(Sheet1!$B:$B)-1,1)

That picks up all the numbers in column B except the last one.

C3: =IF(ISBLANK(B4),0,ROUND(Freight*(B3/SUM(LineItems)),2))

The above formula allocates the freight into the Freight column. Download FreightCalculator.xls.zip

No related posts.

Post a comment