+ Reply to Thread
Results 1 to 9 of 9

Assign label caption based off of textbox value

  1. #1
    Registered User
    Join Date
    01-20-2013
    Location
    Denver, Colorado
    MS-Off Ver
    2011 (mac)
    Posts
    48

    Assign label caption based off of textbox value

    Hi Forum,

    I'm trying to assign a caption to a label based off the value (or lack there of) in a corresponding textbox. The value in the textbox can be blank, a date, or the word "not completed". I'm struggling to find the code to recognize the value in the textbox as a date and check if that date is greater or less than/equal to today's date. Below is the current code I've been trying to use:

    Please Login or Register  to view this content.
    Where WCCnb is a temp variable, txtWCCnb is the textbox that holds the value, lblWCCnb.Caption is the label that I'm trying to change based off the value in txtWCCnb.

    Please let me know if you have any suggestions!

  2. #2
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Assign label caption based off of textbox value

    MileHigh_PhD,

    Here's one way...
    Please Login or Register  to view this content.
    Hope that helps,
    ~tigeravatar

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Forum Expert Solus Rankin's Avatar
    Join Date
    05-24-2013
    Location
    Hollywood, CA
    MS-Off Ver
    Win7 Office 2010 VS Express 2012
    Posts
    2,655

    Re: Assign label caption based off of textbox value

    Try:

    Please Login or Register  to view this content.
    Untested.
    Thanks,
    Solus


    Please remember the following:

    1. Use [code] code tags [/code]. It keeps posts clean, easy-to-read, and maintains VBA formatting.
    Highlight the code in your post and press the # button in the toolbar.
    2. Show appreciation to those who have helped you by clicking below their posts.
    3. If you are happy with a solution to your problem, mark the thread as [SOLVED] using the tools at the top.

    "Slow is smooth, smooth is fast."

  4. #4
    Forum Expert Solus Rankin's Avatar
    Join Date
    05-24-2013
    Location
    Hollywood, CA
    MS-Off Ver
    Win7 Office 2010 VS Express 2012
    Posts
    2,655

    Re: Assign label caption based off of textbox value

    @Tiger

    What happens if CDate gets to a non-Numberic value? Does it ignore?

  5. #5
    Registered User
    Join Date
    01-20-2013
    Location
    Denver, Colorado
    MS-Off Ver
    2011 (mac)
    Posts
    48

    Re: Assign label caption based off of textbox value

    Thanks Tiger! The code is working... any chance you know how to turn the text green if it falls under the case statement for "Scheduled For "?

  6. #6
    Registered User
    Join Date
    01-20-2013
    Location
    Denver, Colorado
    MS-Off Ver
    2011 (mac)
    Posts
    48

    Re: Assign label caption based off of textbox value

    Quote Originally Posted by XeRo Solus View Post
    @Tiger

    What happens if CDate gets to a non-Numberic value? Does it ignore?
    Hi XeRo...I'm using a calendar to throw dates into a textbox, with the added button that throws "not completed" into the textbox. So, I'll only ever have the following values in the textbox: blank, date, or "not completed". Tiger's code seems to cover all bases!

  7. #7
    Forum Expert Solus Rankin's Avatar
    Join Date
    05-24-2013
    Location
    Hollywood, CA
    MS-Off Ver
    Win7 Office 2010 VS Express 2012
    Posts
    2,655

    Re: Assign label caption based off of textbox value

    @ Tiger

    I'm assuming by going over your code that CDate returns 0 if the value is not a date. Is that a correct assumption?

  8. #8
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Assign label caption based off of textbox value

    @XeRo Solus,

    Normally anything that can't be converted to a date results in an error. The 'On Error Resume Next' line suppresses any error that would occur and the 'On Error GoTo 0' line removes the 'On Error Resume Next' condition.
    If there was an error then the variable didn't have a value assigned to it and so remains with its default value of 0. Checking if it is still at its default value shows that the textbox had a non-date value, like the text "Not Completed" and so the output is also "Not Completed". If it was assigned a value, then it has been converted to a date and can be compared against other dates as normal.

    While there are many other methods to accomplish the same thing, I personally prefer this one because it is straightforward and easy to work with.

  9. #9
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Assign label caption based off of textbox value

    Quote Originally Posted by XeRo Solus View Post
    I'm assuming by going over your code that CDate returns 0 if the value is not a date. Is that a correct assumption?
    You beat me to it Yes, that is correct.

+ 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. [SOLVED] Change Label Caption VB...
    By Excelnoub in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-02-2013, 09:17 AM
  2. [SOLVED] Label caption
    By puuts in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 03-25-2013, 09:31 AM
  3. Assign values to textbox within userform based on combox selection.
    By alter54 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-16-2012, 03:55 PM
  4. New Sum and label caption not working
    By AnthonyWB in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-31-2011, 11:46 AM
  5. Format Label.Caption or Textbox data
    By RobC in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-11-2005, 08:06 PM

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