+ Reply to Thread
Results 1 to 5 of 5

User Prompt For Cell

Hybrid View

  1. #1
    Registered User
    Join Date
    09-13-2011
    Location
    california
    MS-Off Ver
    Excel 2003
    Posts
    13

    User Prompt For Cell

    Hi,
    I'm trying to write a macro and at one point I want it to stop at a user selected cell then delete all the values in the column below that cell and the same for the column to the left.

    This is the code I've tried to use to allow the user to select the cell, it comes up with with an input box but fails stating

    "method 'range' of object '_global' failed"\

        Dim sCell As String
        sCell = Range(Application.InputBox(Prompt:="Pick the Cell", Type:=8)).Value
        MsgBox sCell
    This should be really simple but it's not working and I'm pulling my hair out. Thanks in advance.

    Also attached is a graphic showing what I'm trying to do.
    Attached Images Attached Images
    Last edited by canyon289; 09-13-2011 at 03:29 PM. Reason: Corrected Typo in Code Tag

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,243

    Re: User Prompt For Cell

    Please don't post pictures of worksheets; post a sample workbook.

    I don't want to have to recreate your spreadsheet before I can help with a solution.

    Regards
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Forum Expert
    Join Date
    11-29-2010
    Location
    Ukraine
    MS-Off Ver
    Excel 2019
    Posts
    4,168

    Re: User Prompt For Cell

    hi, canyon289, try this out:

    Sub test()
    
    Dim icol As Long, myrange As Range
    
    On Error Resume Next
    
    Set myrange = Application.InputBox(Prompt:="Select cell", Type:=8)
    
    If myrange Is Nothing Then Exit Sub
    
    If myrange.Cells.Count = 1 Then
        
        icol = myrange.Column
        
        Union(Range(myrange, Cells(Rows.Count, icol).End(xlUp)), Range(myrange.Offset(, 1), Cells(Rows.Count, icol + 1).End(xlUp))).ClearContents
    
    Else
    
        MsgBox "Please try again and select one cell only.", vbInformation
    
    End If
    
    End Sub

  4. #4
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229

    Re: User Prompt For Cell

    If type = 8, Application.InputBox returns a Range object, not a string. Try this
    Dim sCell As String
       
    sCell = Application.InputBox(Prompt:="Pick the Cell", Type:=8).Value
    
    MsgBox sCell
    To buffer it (if the user presses Cancel or selects more than one cell or selects a cell with and error value), I'd add
    Dim sCell As String
    
    sCell = Chr(5)
    On Error Resume Next
    sCell = CStr(Application.InputBox(Prompt:="Pick the Cell", Type:=8).Cells(1,1).Value)
    On Error Goto 0
    
    If sCell = Chr(5) Then
        MsgBox "cancel Pressed"
    Else
        MsgBox sCell
    End If
    Alternatly, if you are as interested in the actual cells as you are in its contents, you might declare uiCell as a Range object and set that to the return of the InputBox.
    Last edited by mikerickson; 09-13-2011 at 03:58 PM.
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

  5. #5
    Registered User
    Join Date
    09-13-2011
    Location
    california
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: User Prompt For Cell

    Hey,
    Thank you for the help! Your functions have helped so much in reducing the amount of time I need to spend on crunching my data. I have another question now but that's for another thread.

    Thank you again!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1