part 6 Flashcards
reasons for differences between physical inventory counts and perpetual inventory records
obsolenscence or other cause of decline in market value, damage, misclassification, quality issues
possible analytics quenstions for inventory
does inventory physical count match the client’s general ledger account (reconciliation)
are there any inventory items which should not be included in the inventory (cutoff analysis)
are there duplicates or omissions in source documents (duplicates and omissions)
perpetual_inventory_ledger
clients books inventory counts
get the client’s books inventory unit cost and total inventory value
inner_join pepertual_inventory_ledger with the sales_journal by = ‘sku’
code line to find out total inventory in books
mutate(inv_value = stock_on_hand * unit cost) (from perpetual_inventory_ledger and sales_journal)
code line to find out total inventory in real life
mutate(inv_value = ye_stock_on_hand * unit__cost.x) (from real_world_ye_inventory)
get the difference between physical count and books
left_join perpetual_inventory_ledger with real_world_ye_inventory by = ‘sku’. filter(exception != ‘no exception, count is accurate’)
find sales cutoff errors
filter(invoice_date <= fyear_end & shipper_date > fyear_end) (from sales_journal)
verify that non of cutoff errors were included in Y/E inventory are received after year end so they should not be included in this year’s inventory
left_join perpetual_inventory_ledger with ap_ledger by = ‘sku’ . Filter(receiver_date > fyear_end)
omitted variables
missing values