+ Reply to Thread
Results 1 to 2 of 2

Button to reset form values

Hybrid View

  1. #1
    Registered User
    Join Date
    01-16-2004
    Posts
    3

    Button to reset form values

    Hi,

    I have entered some coding so that when my spreadsheet open, all user values are set to zero (default values).

    How do I add a button to my worksheet for the user to click on to reset the values to there defaults while working on that sheet


  2. #2
    Dave Peterson
    Guest

    Re: Button to reset form values

    I'd create a named range and then just clear the cells in that named range.

    Select your range of cells that should be cleared.
    Insert|Name|Define|
    and give it a nice name (I'll call it Input).

    Then create a macro like this:

    option Explicit
    sub ClearInput()
    worksheets("sheet1").range("Input").value = 0
    end sub

    The plop a button from the Forms toolbar and assign that macro to the button.

    In fact, I think I'd verify the request just in case:

    option Explicit
    sub ClearInput()
    Dim resp as long
    resp = msgbox(Prompt:="Are you sure you want to reset to defaults?", _
    buttons:=vbyesno)
    if resp = vbno then
    exit sub
    end if
    worksheets("sheet1").range("Input").value = 0
    end sub

    If you're new to macros, you may want to read David McRitchie's intro at:
    http://www.mvps.org/dmcritchie/excel/getstarted.htm


    propolis wrote:
    >
    > Hi,
    >
    > I have entered some coding so that when my spreadsheet open, all user
    > values are set to zero (default values).
    >
    > How do I add a button to my worksheet for the user to click on to reset
    > the values to there defaults while working on that sheet
    >
    >
    >
    > --
    > propolis
    > ------------------------------------------------------------------------
    > propolis's Profile: http://www.excelforum.com/member.php...fo&userid=5044
    > View this thread: http://www.excelforum.com/showthread...hreadid=506012


    --

    Dave Peterson

+ 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