Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Ok.. don't know if the terminology is correct, but basically what I need to
do is... I have found all of the manufacturer's products where they have charged us different unit prices. I will need to prioritize them so that we work on the items with the most significant difference in price so we don't waist our time on $0.01 difference instead of $100.00 difference. Problem is there are 820 line items. One product number may have 3 different unit prices or another product number may have 2 different unit prices. How can I find the difference between the unit prices when there are 820 line items and each product will have at least 2 unit prices, but may have more than 2???? Please let me know if you have any ideas. Thanks. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could use the Advanced Filter to generate a list of unique product codes.
Lets say the product codes are in A2:A821, unit prices are in B2:B821 (assuming you have column headers). Click Data/Filter/Advanced Filter, check copy to another location and unique records only, list range is A1:A821, copy to range is (let's say) D1. Then in E2, enter =MAX((A$2:A$821=D2)*(B$2:B$821))-MIN(IF(A$2:A$821=D2,B$2:B$821)) array entered w/ Cntrl+Shift+Enter. Then copy the formula down. It will give you the difference between the lowest price and the highest price for each product code. Then sort this new table by the variance column. change ranges as needed. "Dee" wrote: Ok.. don't know if the terminology is correct, but basically what I need to do is... I have found all of the manufacturer's products where they have charged us different unit prices. I will need to prioritize them so that we work on the items with the most significant difference in price so we don't waist our time on $0.01 difference instead of $100.00 difference. Problem is there are 820 line items. One product number may have 3 different unit prices or another product number may have 2 different unit prices. How can I find the difference between the unit prices when there are 820 line items and each product will have at least 2 unit prices, but may have more than 2???? Please let me know if you have any ideas. Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find Function | Excel Discussion (Misc queries) | |||
Find and Replace | Excel Worksheet Functions | |||
Code needed to find records from bottom up | Excel Discussion (Misc queries) | |||
find a cells from a range of cell | Excel Worksheet Functions | |||
Excel has a "Find Next" command but no "Find Previous" command. | Excel Discussion (Misc queries) |