+ Reply to Thread
Results 1 to 9 of 9

message box

Hybrid View

  1. #1
    Registered User
    Join Date
    11-21-2012
    Location
    Delhi
    MS-Off Ver
    Excel 2003
    Posts
    5

    message box

    I have a sheet
    if i enter 1 in column a cell then show a message box
    if i enter 2 in column a cell then show a message box
    if i enter 3 in column a cell then show a message box
    if i enter 4 in column a cell then show a message box

    please help me I spent my one weak for the same

  2. #2
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,239

    Re: message box

    Private Sub Worksheet_Change(ByVal Target As Range)
        If Not Intersect(Target, Columns(1)) Is Nothing Then
            If Target.Value >= 1 And Target.Value <= 4 Then
                MsgBox "Something"
            End If
        End If
    End Sub
    Worksheet event code is stored on a worksheet module. To add it to your worksheet, do the following:

    Copy the code
    Select the worksheet in which you the code to run
    Right click on the sheet tab and choose View Code, to open the Visual Basic Editor.
    Where the cursor is flashing, choose Edit | Paste

  3. #3
    Registered User
    Join Date
    11-21-2012
    Location
    Delhi
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: message box

    many many thanks
    you save my one month

    thks again

  4. #4
    Registered User
    Join Date
    03-04-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: message box

    Hi Kyle,
    based on this information how do I get the vba to select a workbook instead of the worksheet. Thanks

  5. #5
    Valued Forum Contributor
    Join Date
    08-13-2012
    Location
    Gardony, Hungary
    MS-Off Ver
    Excel 2003
    Posts
    558

    Re: message box

    Hi,

    can you be more specific? I can only offer vague advice with your description.

    You should use the worksheet_change event and the MsgBox function. Something like this:
    Private Sub Worksheet_Change(ByVal Target As Range)
    
    If Target.Column = 1 Then ' <-- this is the column you check
        If Target = "1" Then MsgBox "You entered 1."
        If Target = "2" Then MsgBox "You entered 2."
        If Target = "3" Then MsgBox "You entered 3."
        If Target = "4" Then MsgBox "You entered 4."
    End If
    
    End Sub
    You need to write the code in the worksheet's code window. Change it the way you like.
    Last edited by RHCPgergo; 11-21-2012 at 05:28 AM. Reason: oops, minor mistake in code

  6. #6
    Registered User
    Join Date
    11-21-2012
    Location
    Delhi
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: message box

    hi how r u??
    maye we use any vba code like vlookup

    thanks in advance

  7. #7
    Registered User
    Join Date
    11-21-2012
    Location
    Delhi
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: message box

    many-many thnks

    please help me also about:
    i have 2 sheet s
    sheet 1
    col a col b
    code qty
    k 4
    m 6
    b 8
    m 5
    k 3
    m 1

    Sheet 2
    col a col b
    code qty
    k
    m
    b

    i used vlookup in sheet 2 it takes first value in col b, but i want last value, pls help me

  8. #8
    Registered User
    Join Date
    11-21-2012
    Location
    Delhi
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: message box

    hi frds
    please help me
    if i enter 1 in column a cell then higlighted row in red color (A:R)
    if i enter 2 in column a cell then higlighted row in Yellow color (A:R)
    if i enter 3 in column a cell then higlighted row in Green color (A:R)
    if i enter 4 in column a cell then higlighted row in Orange color (A:R)

  9. #9
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: message box

    derato,

    Unfortunately you need to post your question in a new thread, it's against the forum rules to post a question in the thread of another user. If you create your own thread, any advice will be tailored to your situation so you should include a description of what you've done and are trying to do. Also, if you feel that this thread is particularly relevant to what you are trying to do, you can surely include a link to it in your new thread.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

+ 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