Thread: help with code
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
steven steven is offline
external usenet poster
 
Posts: 389
Default help with code

sorry guess i am as newbe as it gets... can't figure this out... can anyone
help me out with the code?

thanks.

"Joel" wrote:

try Inputbox. See excel help menu in visual Basic window.

"steven" wrote:

hi I have this part of a code:

If IsError(.Cells(Lrow, "E").Value) Then
ElseIf .Cells(Lrow, "E").Value = "2" And _
.Cells(Lrow, "G").Value < 0 Then .Rows(Lrow).Delete

but instead of having value "2" i'd prefer to have a box pop up that askes
me for this value each time, something like this I guess:

Dim V As Variant
V = Application.InputBox(prompt:="Enter number of month.", Type:=1)
If V = False Then
Debug.Print "User clicked cancel"

but how do I combine the 2 parts of code? any suggestions?

S.