Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
here is my original question
ok here is what i have. A B C D E 1 V W X Y 2 1.95 1.55 1.75 2.05 #Display now in cell E2 i want it to find the minimum value from A2 to D2 and display the letter above that minimum values column found in row 1 (V,W,X or Y). so in this example i want W to be displayed in Cell E2. and this is the reponse i got Sub test() Dim rng As Range Worksheets("Sheet1").Range("A2:D2").Select Set rng = Selection.Find(What:=Application.min(Selection), Lookat:=xlWhole, LookIn:=xlValues) Range("E2") = rng.Offset(-1, 0) End Sub and it does work but now when i format the cells with the numbers in them to currency it gives me a runtime error of 91. what do i need to change in the code for it to work? thank you jonathan |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to add new currency Symbol in Format/Cell/Currency | Excel Discussion (Misc queries) | |||
how do I sum currency values in a row containing currency and uni. | Excel Worksheet Functions | |||
Currency | Excel Discussion (Misc queries) | |||
Conversion from currency value to currency text format | Excel Programming | |||
Currency | Excel Programming |