Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a MIN formula reading vendor bids across many worksheets in the
workbook. It works but I cannot see which worksheet the bid was on. Trace Precedent doesn't work. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a couple of ideas (untested) but I am curious as to what the exact
formula is. IDEAS: Once you find the MIN value have a cell that uses the IF function along with the MIN formula to display the vendor: IF(MIN(....)=B1,vendorname,.....). B1 would be the MIN formulat that works. Vendorname would be the vendor pulled from the sheet that has the MIN value that was found. Another idea is if the same MIN formula can be placed in a conditional format. Then the format can change on the vendor that meets the criteria. Again, untested, but a couple of ideas that popped in my head. Les "SLOGIC" wrote: I have a MIN formula reading vendor bids across many worksheets in the workbook. It works but I cannot see which worksheet the bid was on. Trace Precedent doesn't work. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Select the cell containing the MIN formula and run this macro:
Sub WhereIsIt() v = ActiveCell.Value mesage = "" For Each w In Worksheets For Each r In w.UsedRange If IsNumeric(r.Value) Then If r.Value = v Then mesage = mesage & w.Name & r.Address & Chr(10) End If End If Next Next MsgBox (mesage) End Sub This will find the sheet containing the min value and the cell as well. If there is more than one occurance of the minimum, all occurances will be returned. -- Gary''s Student - gsnu200772 "SLOGIC" wrote: I have a MIN formula reading vendor bids across many worksheets in the workbook. It works but I cannot see which worksheet the bid was on. Trace Precedent doesn't work. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() "Gary''s Student" wrote: Select the cell containing the MIN formula and run this macro: Sub WhereIsIt() v = ActiveCell.Value mesage = "" For Each w In Worksheets For Each r In w.UsedRange If IsNumeric(r.Value) Then If r.Value = v Then mesage = mesage & w.Name & r.Address & Chr(10) End If End If Next Next MsgBox (mesage) End Sub This will find the sheet containing the min value and the cell as well. If there is more than one occurance of the minimum, all occurances will be returned. -- Gary''s Student - gsnu200772 "SLOGIC" wrote: I have a MIN formula reading vendor bids across many worksheets in the workbook. It works but I cannot see which worksheet the bid was on. Trace Precedent doesn't work. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formula to find how many cell have a number between 2 numbers. | Excel Worksheet Functions | |||
find last cell in a column but not a formula | Excel Worksheet Functions | |||
Is there a formula that can find the cell corresponding to a trans | Excel Worksheet Functions | |||
Can a formula find a comment in a cell | Excel Worksheet Functions | |||
Formula to find cell with data on a row | Excel Worksheet Functions |