Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Mike,
this is exactly what I was looking for ! Thanks again for your help. Have a nice week-end Armelle "Mike" a écrit dans le message de ... Armelle Aaserød wrote: Thanks for your Input Mike! does this reflect more what you ment to do ? Mike Sub SearchWeekNumber() MyStock = 10000.355453 'ask for week number and loop until valid WeekNum = Application.InputBox("Please enter your week number", _ , , , , , , 1) a = Application.Match(Val(WeekNum), Range("ValidWeekNumbers"), False) While IsError(a) MsgBox "Number has to appear in the range <ValidWeekNumbers" & _ vbLf & "Try again" WeekNum = Application.InputBox("Please enter your week number", _ , , , , , , 1) a = Application.Match(Val(WeekNum), Range("ValidWeekNumbers"), _ False) Wend 'put the value in the found cell If Not (IsError(a)) Then Cells(a, 2).Value = MyStock Cells(a, 2).NumberFormat = "#,##0.0000" Else MsgBox "The week has NOT been found" End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Check no cell is the same within a range | Excel Discussion (Misc queries) | |||
can a formula check for a certain value in a range? | Excel Discussion (Misc queries) | |||
Check if a range is a sebset of another range | Excel Programming | |||
Check if a range is a sebset of another range | Excel Programming | |||
check range for certain value | Excel Programming |