Results 1 to 4 of 4

inputbox cancel

Threaded View

  1. #1
    Registered User
    Join Date
    10-07-2011
    Location
    Netherlands
    MS-Off Ver
    2003 (office XP)
    Posts
    19

    inputbox cancel

    Hi people of excelforum.

    I stuck here in my inputbox, and can't seem to find an solution for the cancel button. I already tried dozens of options and it's not getting me any where.
    The problem i have might be simple to some of you.

    As soon as i use my macro I can't use the cancel button, I have to continue the whole thing to finish it. If i use the cancel button it simply give me an error in return, and after that the macro is being aborted.

    The code I am using is for my monthly payments, and by activating an macro it copy's al relevant data to a new sheet with the inputbox to fill in the new sheet name.

    The Code I use,

    Sub Copy_sheet()
    ' duplicates same tab to new tab with input box for new tab number.
    Dim newname As String
    Dim sh As Worksheet
        newname = ActiveSheet.Name
    Duplicatesearch:
        For Each sh In Worksheets
        If UCase(sh.Name) = UCase(newname) Then 
        newname = InputBox("enter new Daily Report Number")
        GoTo Duplicatesearch
        End If
        Next sh
        ActiveSheet.Copy Worksheets(1)
        ActiveSheet.Name = newname
            Range("C4").Select
    'clear checkbox value.
        ActiveSheet.CheckBoxes.Value = False
    ' moves new sheet to the end of workbook.
            ActiveSheet.Move after:=Worksheets(Worksheets.Count)
    'update data
        Range("J6:J13").Select
        Sheets(Sheets.Count - 1).Select
        Range("O6:O13").Select
        Selection.Copy
        Sheets(Sheets.Count).Select
        Range("J6:J13").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
    ' this is to auto save the sheet after adding an new sheet.
        ActiveWorkbook.Save
    End Sub

    Regards Olaf.
    Last edited by alansidman; 11-25-2013 at 08:54 PM. Reason: code tags

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. InputBox and Cancel
    By michaelaindia in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-24-2012, 04:32 AM
  2. [SOLVED] Cancel my Inputbox
    By nickmax1 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-21-2012, 11:05 AM
  3. Cancel on Inputbox not work
    By unley in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-30-2011, 07:59 PM
  4. InputBox: Cancel/X properties
    By Rick_Stanich in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-08-2009, 04:47 PM
  5. InputBox - Cancel
    By Lonwez in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-06-2005, 07:17 PM

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