Consulting

Results 1 to 3 of 3

Thread: Solved: UserForm find not finding dollar amounts

  1. #1
    VBAX Mentor
    Joined
    Jan 2008
    Posts
    384
    Location

    Solved: UserForm find not finding dollar amounts

    How can I format my comboboxes so that they show the exact amount on the worksheet, and allow find to work correctly.
    Find is NOT finding values ending in 0 even after I formatted the text and comboboxes using
    ComboBox2.Text = Format(ComboBox2.Text, "#,###.##")

    See attached 2003 excel sheet. Use the full search checkbox to test.
    Any ideas?

    Thanks
    Attached Files Attached Files

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Change all of the "#,###.##" formats to "#,##0.00"

    Why are you overlayying that textbox on the combobox, what purpose does that serve?
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    VBAX Mentor
    Joined
    Jan 2008
    Posts
    384
    Location

    UserForm find not finding dollar amounts

    xld: Distinguished Lord of VBAX:

    Thanks.


    That worked perfectly. The textbox was previously used on some other calculation functions and I wanted a common “ Collector”. Its still there because of testing etc.. etc..

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •