+ Reply to Thread
Results 1 to 12 of 12

If the value of a cell is not null, show a pop up message or a reminder text in another...

  1. #1
    Registered User
    Join Date
    03-04-2019
    Location
    USA
    MS-Off Ver
    Microsoft 365 - V2308
    Posts
    33

    If the value of a cell is not null, show a pop up message or a reminder text in another...

    Hi all,

    I have a form in Excel, once the user starts filling in the form, entering a text in a cell, I want to show a a pop up message or a reminder text in the next cell. Just to remind them not to forget to do some tasks. How this can be achieved?
    I know that I can use/ data>Data Validation> Input Message.. But, it is not going to help me, because the criteria to use this is only if the cell is selected. I want the pop up message if the value of the cell if not null.


    Thanks,

  2. #2
    Forum Contributor noboffinme's Avatar
    Join Date
    08-29-2013
    Location
    Melbourne, Australia
    MS-Off Ver
    Excel 2003/7/10/13/16/19
    Posts
    1,071

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    Hi Ninajigar,
    If you are familiar with VBA code, you could add a messagebox to this Forms Text Box to say what you want.
    If you want help with this, pls post your file.
    Remember you are unique, like everyone else

  3. #3
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    2,831

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    Ninajigar, when you say "filling in a form" are you referring to a User Form, or just filling in Cells in a spreadsheet?

  4. #4
    Registered User
    Join Date
    03-04-2019
    Location
    USA
    MS-Off Ver
    Microsoft 365 - V2308
    Posts
    33

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    Quote Originally Posted by Gregb11 View Post
    Ninajigar, when you say "filling in a form" are you referring to a User Form, or just filling in Cells in a spreadsheet?
    Filling in cells in a spreadsheet.

  5. #5
    Registered User
    Join Date
    03-04-2019
    Location
    USA
    MS-Off Ver
    Microsoft 365 - V2308
    Posts
    33

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    Quote Originally Posted by noboffinme View Post
    Hi Ninajigar,
    If you are familiar with VBA code, you could add a messagebox to this Forms Text Box to say what you want.
    If you want help with this, pls post your file.
    excel_form_fill_in_popmesg.png I got a screen shot of the spreadsheet ... Thx

  6. #6
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    2,831

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    You could probably do an "on-change" event macro, but a simple option is to do data validation. On the Name field, create a data validation where the criteria is to Allow "Text Length" less than 1 (meaning if anything is entered into the cell). Then for the error Alert section, give it an "Information" style, with the message you want to give, like, "Please be sure to fill in the section below".

  7. #7
    Registered User
    Join Date
    03-04-2019
    Location
    USA
    MS-Off Ver
    Microsoft 365 - V2308
    Posts
    33

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    Thanks, I did that. However, once the cell is seleted, I see that pop up message.!
    This is not what I want, I want the pop up message shows when the user enters something in the cell.
    Also, I dn't undrestand the logic, when the text lenghth is less than 1, does n't it mean 0? nothing was inserted?
    Thanks for your time to answer my question.
    I tested data validation with both less than and greater than 1 logic, in both cases once the cell is selected, I see the pop up message.
    Last edited by Ninajigar; 03-07-2019 at 01:40 PM.

  8. #8
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    2,831

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    Sounds like you put the message in the wrong place. Put the message in the "Error Alert" tab, not the "Input Message" tab. Allowing text length of less than 1 says you allow blanks, but after someone types something in, and then hits enter - that's when the message will appear.

  9. #9
    Registered User
    Join Date
    03-04-2019
    Location
    USA
    MS-Off Ver
    Microsoft 365 - V2308
    Posts
    33

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    Quote Originally Posted by Gregb11 View Post
    Sounds like you put the message in the wrong place. Put the message in the "Error Alert" tab, not the "Input Message" tab. Allowing text length of less than 1 says you allow blanks, but after someone types something in, and then hits enter - that's when the message will appear.
    Thanks a lot! it workds perfectly fine. However, users with different roles will see different number of fileds; how can I make sure that everytime a new filed is added, this function will work? is there a vb program for it? if yes, can you please posted here....

  10. #10
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    2,831

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    There are new Name Fields added? How are they added? If you copy/paste the name field, it will carry over the same functionality (data validation).

  11. #11
    Registered User
    Join Date
    03-04-2019
    Location
    USA
    MS-Off Ver
    Microsoft 365 - V2308
    Posts
    33

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    Please have a look at the attached image:
    excel_form_fill_in_popmesg.png
    If there is any value in column H (third column), I don't want the popup window to be shown when the users type in something in the second column. How this can be achieved?
    Thanks,

  12. #12
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    2,831

    Re: If the value of a cell is not null, show a pop up message or a reminder text in anothe

    To do this, do the following:
    Go to "Data Validation" like you did before, only this time, under the settings tab, under "Allow:", select "Custom", and in the formula field enter:
    =SUM(NOT(ISBLANK(H:H))*1)>0

+ 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. Unable to show text from another cell in the message box
    By Krishnab4u in forum Excel General
    Replies: 2
    Last Post: 07-17-2018, 04:58 PM
  2. [SOLVED] Formula to Show Blank If Cell Is Null
    By jo15765 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 10-19-2016, 09:32 AM
  3. [SOLVED] Code to reminder pop message on due date request
    By mukeshbaviskar in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 02-03-2014, 08:31 PM
  4. [SOLVED] How to pop up a warning message before any Excel automatic update link reminder message
    By billj in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-01-2013, 10:41 AM
  5. Format cell to show text when null
    By Cullen8 in forum Excel General
    Replies: 6
    Last Post: 11-17-2010, 12:47 PM
  6. Show text message instead of egg timer while macro runs
    By CasualVisitor in forum Excel General
    Replies: 2
    Last Post: 09-25-2009, 02:39 PM
  7. [SOLVED] can i have a pop up reminder message when i open a workbook?
    By j jones in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 11-16-2005, 04:10 PM

Tags for this Thread

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