+ Reply to Thread
Results 1 to 6 of 6

Enable button if specific cells have values

Hybrid View

  1. #1
    Registered User
    Join Date
    10-09-2014
    Location
    Manila, Philippines
    MS-Off Ver
    365
    Posts
    11

    Question Enable button if specific cells have values

    Hi,

    May i please ask for help on this excel problem i have?

    My sheet looks like this: Picture1.png

    I have 3 buttons, which already have macro's.
    The buttons are, Button (Form Control)
    I'm not really good at excel macros so what i did was, i duplicated the sheet to a new excel, recorded a macro then copied that macro code to the Button (Form Control).

    I need these buttons to only be clickable when all cells have values in them.

    Note: 9 are dropdown lists and 5 are manually entered.
    Dropdown: C4, C6, (C14 D14 E14 F14 G14), M8 and M12
    Manually entered: C8, C10, (C12 E12) and M1

  2. #2
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: Enable button if specific cells have values

    Add this code to your module:
    Public Function BlankCells() As Boolean
        Dim c As Range
        BlankCells = False
        For Each c In ActiveSheet.Range("C4,C6,C14,D14,E14,F14,G14,M8,M12,C8,C10,C12,E12,M1")
            If IsEmpty(c) Then
                BlankCells = True
                Exit Function
            End If
        Next c
    End Function
    Then insert this line at the very top of each of the individual button macros:
        If BlankCells Then Exit Sub
    let Source = #table({"Question","Thread", "User"},{{"Answered","Mark Solved", "Add Reputation"}}) in Source

    If I give you Power Query (Get & Transform Data) code, and you don't know what to do with it, then CLICK HERE

    Walking the tightrope between genius and eejit...

  3. #3
    Registered User
    Join Date
    10-09-2014
    Location
    Manila, Philippines
    MS-Off Ver
    365
    Posts
    11

    Re: Enable button if specific cells have values

    Hi Olly,

    Thank you so much for your help!
    It worked!

    Last; would it be possible to add a pop up warning message saying that you cannot proceed since the cells are blank?

    Thanks a bunch!

  4. #4
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: Enable button if specific cells have values

    Happy to help.

    Quote Originally Posted by bobbieatendido View Post
    Last; would it be possible to add a pop up warning message saying that you cannot proceed since the cells are blank?
    Of course. Change the line you inserted at the top of each macro to:
        If BlankCells Then
            MsgBox "Unable to continue: some required cells are blank", vbExclamation + vbOKOnly
            Exit Sub
        End If
    Change the message text to suit.

  5. #5
    Registered User
    Join Date
    10-09-2014
    Location
    Manila, Philippines
    MS-Off Ver
    365
    Posts
    11

    Re: Enable button if specific cells have values

    Thank you for solving everything Olly!

    Please have a nice day ahead.

    Cheers!

  6. #6
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: Enable button if specific cells have values

    Happy to help, thanks for the feedback

+ 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. Create A Button In Document To Disable/Enable A Specific Line of Code
    By BLK306 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 02-05-2014, 02:12 PM
  2. Enable option button contingent on other cell values
    By jghender in forum Excel General
    Replies: 0
    Last Post: 01-29-2013, 11:59 AM
  3. How to Enable/Disable the Option Button(s) based on different ComboBox Values?
    By e4excel in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-30-2011, 04:32 PM
  4. [SOLVED] Can the Combo Box move and size with cells radio button be enable
    By Tom Cote in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 11:05 PM
  5. Can the Combo Box move and size with cells radio button be enable
    By Tom Cote in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 09:05 PM
  6. [SOLVED] Can the Combo Box move and size with cells radio button be enable
    By Tom Cote in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 11:05 AM
  7. Can the Combo Box move and size with cells radio button be enable
    By Tom Cote in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 02:05 AM
  8. Enable toolbar button in one specific worksheet
    By JuanK in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-26-2005, 07: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