+ Reply to Thread
Results 1 to 14 of 14

vba/code to bring up msg box when critaria is met that contains data from comment box

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-07-2013
    Location
    apple valley ca
    MS-Off Ver
    Excel 2007
    Posts
    110

    vba/code to bring up msg box when critaria is met that contains data from comment box

    what I have is a VERY large members data base on one sheet.. on another sheet(or sign in sheet) I use the Vlookup to pull data from the members list via scan-able cards (like the ones you see at supermarket key chains) when data is populated in the cells (on the sign in sheet), sometimes a msg pops up in the H column saying "see not on MM list"
    what normally happens is my staff has to go to the members data base find the member (or members number) and find the note..
    what i would like to happen is when the "see note on MM list" appears, a Message Box pops up and delivers the data from the note that is on the members data base.
    the notes are always on the A,B or C column of the data base. and the "see note on MM list" always is in the H column of the sign in sheet.
    is this possible.
    thanks in advance
    Jason

  2. #2
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    Yes, it's possible - can you post the code and/or samples of the data base and sign-in sheet?
    If I've helped you, please consider adding to my reputation - just click on the liitle star at the left.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~(Pride has no aftertaste.)

    You can't do one thing. XLAdept

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~aka Orrin

  3. #3
    Forum Contributor
    Join Date
    05-07-2013
    Location
    apple valley ca
    MS-Off Ver
    Excel 2007
    Posts
    110

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    Here you go.. thanks for taking a look..
    Attached Files Attached Files

  4. #4
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    the notes are always on the A,B or C column of the data base
    Do you mean the Combined Members sheet???

  5. #5
    Forum Contributor
    Join Date
    05-07-2013
    Location
    apple valley ca
    MS-Off Ver
    Excel 2007
    Posts
    110

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    yes the note is in the combined members list.. in the example that i uploded i used member 16601 which was entered on the A column on the "blank sign in sheet".. then in columns B thru G populates the members info.. AUSTIN , JESSICA, (START DATE) (HIS DOB) (HER DOB) ... then on the H column a message is produced "see note on mm list".. at this point i have to go to the "combined members list". search my list for "16601" and manually find the note which is in the B column.. i would like a pop message box with what the note has in it corrisponding to the member to pop up when the words "see note on mm list" pops up in the H column.. in this example.. the note says "return 110.00" so the pop up should read "return 110.00" i can click OK and get rid of the pop up box..
    hope this helps.. sorry if i wasn't clear..

  6. #6
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    I've written a function that works with this alteration in Column H:

    =_xlfn.IFERROR(IF($A2="","",GetComment(MATCH($A2,'COMBINED MEMBERS'!$A$1:$K$11700,0))),"NOT FOUND")
    Function GetComment(r As Long) As String: Dim C As Range, T As Comment 'XWarlock
    Dim wc As Worksheet, ws As Worksheet, S As String
    Set wc = ActiveWorkbook.Worksheets("COMBINED MEMBERS")
    Set ws = ActiveWorkbook.Worksheets("BLANK SIGN IN SHEET")
    For Each C In wc.Range("A" & r & ":C" & r)
    If Not C.Comment Is Nothing Then
    Set T = C.Comment
    S = T.text: S = Mid(S, InStr(1, S, ":") + 1, Len(S))
    S = Right(S, Len(S) - 1): S = Left(S, Len(S) - 1)
    Exit For: End If: Next
    GetComment = S
    End Function
    It's not a pop up and may not be what you want.
    Last edited by xladept; 09-26-2013 at 05:28 PM.

  7. #7
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    Hi,

    This combination pasted into the Sign In Sheet module will accomplish much of what you want:

    Option Explicit
    Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    If Target.Column = 8 Then
    Dim wc As Worksheet: Set wc = ActiveWorkbook.Worksheets("COMBINED MEMBERS")
    Dim WF As WorksheetFunction: Set WF = WorksheetFunction
    MsgBox (GetComment(WF.Match(Range("A" & Target.Row), wc.Range("A:A"), 0)))
    SendKeys ("~"): End If: End Sub
    
    
    Function GetComment(r As Long) As String: Dim C As Range, T As Comment 'XWarlock
    Dim wc As Worksheet, ws As Worksheet, S As String
    Set wc = ActiveWorkbook.Worksheets("COMBINED MEMBERS")
    Set ws = ActiveWorkbook.Worksheets("BLANK SIGN IN SHEET")
    For Each C In wc.Range("A" & r & ":C" & r)
    If Not C.Comment Is Nothing Then
    Set T = C.Comment
    S = T.Text: S = Mid(S, InStr(1, S, ":") + 1, Len(S))
    S = Right(S, Len(S) - 1): S = Left(S, Len(S) - 1)
    Exit For: End If: Next
    GetComment = Trim(S): End Function
    Last edited by xladept; 09-27-2013 at 04:33 PM.

  8. #8
    Forum Contributor
    Join Date
    05-07-2013
    Location
    apple valley ca
    MS-Off Ver
    Excel 2007
    Posts
    110

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    Im confused. i put this into the sign in sheet.. and nothing happened .. is there a special way of inserting this.. ??




    Quote Originally Posted by xladept View Post
    Hi,

    This combination pasted into the Sign In Sheet module will accomplish much of what you want:

    Option Explicit
    Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    If Target.Column = 8 Then
    Dim wc As Worksheet: Set wc = ActiveWorkbook.Worksheets("COMBINED MEMBERS")
    Dim WF As WorksheetFunction: Set WF = WorksheetFunction
    MsgBox (GetComment(WF.Match(Range("A" & Target.Row), wc.Range("A:A"), 0)))
    SendKeys ("~"): End If: End Sub
    
    
    Function GetComment(r As Long) As String: Dim C As Range, T As Comment 'XWarlock
    Dim wc As Worksheet, ws As Worksheet, S As String
    Set wc = ActiveWorkbook.Worksheets("COMBINED MEMBERS")
    Set ws = ActiveWorkbook.Worksheets("BLANK SIGN IN SHEET")
    For Each C In wc.Range("A" & r & ":C" & r)
    If Not C.Comment Is Nothing Then
    Set T = C.Comment
    S = T.Text: S = Mid(S, InStr(1, S, ":") + 1, Len(S))
    S = Right(S, Len(S) - 1): S = Left(S, Len(S) - 1)
    Exit For: End If: Next
    GetComment = Trim(S): End Function

  9. #9
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    Hi,

    Did you double-click on the H2 cell?

  10. #10
    Forum Contributor
    Join Date
    05-07-2013
    Location
    apple valley ca
    MS-Off Ver
    Excel 2007
    Posts
    110

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    I get a "compile error" "expected end function".. Pop up

  11. #11
    Forum Contributor
    Join Date
    05-07-2013
    Location
    apple valley ca
    MS-Off Ver
    Excel 2007
    Posts
    110

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    i got it work .. thanks soooo much..

  12. #12
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    Glad you got it working - did you have to put the End Function on its own line?? And, you're welcome!

  13. #13
    Forum Contributor
    Join Date
    05-07-2013
    Location
    apple valley ca
    MS-Off Ver
    Excel 2007
    Posts
    110

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    no. dummie me .. when i copied and paste.. i left out a small section.. so it wasn't working.. lol.. thats what i get for not paying attention.. lol

  14. #14
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: vba/code to bring up msg box when critaria is met that contains data from comment box

    Yeah, The VBIDE cannot take a joke
    Last edited by xladept; 09-29-2013 at 01:04 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. VBA for Searching & Display record with Match Critaria
    By santosh226001 in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 05-09-2013, 06:57 AM
  2. [SOLVED] a vba code to bring the same value of the save refrence
    By funtastic in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-03-2012, 02:17 PM
  3. code to bring up the save as window
    By mike.richards in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-18-2009, 09:29 PM
  4. [SOLVED] Code to bring my company up to date!
    By KJ in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 07-23-2005, 08:05 AM

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