+ Reply to Thread
Results 1 to 2 of 2

Listbox Date and amount text Type

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-21-2015
    Location
    nederland
    MS-Off Ver
    2021
    Posts
    206

    Listbox Date and amount text Type

    Dear all,
    How to build a list box that shows date = 01/11/2017 amount = 1.200,00
    Date is on C and amount is on G

    I use below code to load the data to listbox

    Private Sub cmdLoad_Click()
    Dim DataSH As Worksheet
    On Error GoTo errhandler:
    
    ListBox1.List = Sheets("Registered").Range("A2:M" & [a65536].End(3).Row).Value
    
    
    On Error GoTo 0
    Exit Sub
    errhandler:
    MsgBox "No match found for " & txtSearch.Text
    End Sub
    Attached Images Attached Images

  2. #2
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573

    Re: Listbox Date and amount text Type

    We can use the range's Text property rather than Value to use the Number Format. e.g.
    Private Sub CommandButton1_Click()
      ListBox1.List = a2RangeValueToText(Sheet1.Range("A2:M" & _
        Sheet1.Cells(Rows.Count, "A").End(xlUp).Row))
    End Sub
    
    Function a2RangeValueToText(ar As Range)
      Dim a, c As Integer, r As Long
      a = ar.Value
      For r = 1 To UBound(a)
        For c = 1 To UBound(a, 2)
          a(r, c) = ar(r, c).Text
        Next c
      Next r
      a2RangeValueToText = a
    End Function

+ 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] Find as you type in listbox control - solution for multi-column listbox - vba dictionary
    By wazimu13 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 11-05-2018, 03:42 AM
  2. VBA to filter the ActiveCell whether it is a Date, Text, Amount, etc
    By ND_Pard in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-14-2014, 03:47 AM
  3. [SOLVED] multiple conditions to count large amount of data by Type, month & activity type
    By norfolk_lass in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 04-03-2014, 12:54 PM
  4. [SOLVED] Date When Certain Amount of Text Occurs
    By jhudson444 in forum Excel Formulas & Functions
    Replies: 20
    Last Post: 12-05-2013, 09:43 PM
  5. Replies: 2
    Last Post: 04-28-2013, 02:23 AM
  6. How to match Date and Amount from Sheet1 to Sheet2 with the same Date and Amount?
    By ims0phie in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 04-23-2013, 06:51 AM
  7. getting the amount from between text and a date
    By darkhangelsk in forum Excel General
    Replies: 32
    Last Post: 08-28-2009, 09:51 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