Comparing worksheets

ollie0

New Member
Joined
Jan 12, 2009
Messages
1
I have several worksheets which contain pricing data. I want to find the lowest price and display the price and name of company. Couple of problems:
1. How do ignore $0.00 values?
2. How d I display the name of the sheet (ex:if lowest price is found on sheet named "company B")

Thanks.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Say the following exists in cells a1:a6

3
0
1
7
8
10

Formula in a7: =MIN(IF(B1:B6 <> 0,B1:B6,""))

Entered as array formula (Ctrl-Shift-Enter) will give you the answer "1" as the lowest number excluding zero.
 
Upvote 0
Regarding sheet id:

If all your pricing is in a single column in each sheet, then, as a simple solution, you could create another sheet that puts each price column from source sheets into a single column on the new sheet. That way, you can run your minimums easily and see which column contains the minimum value.
 
Upvote 0

Forum statistics

Threads
1,215,762
Messages
6,126,744
Members
449,335
Latest member
Tanne

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top