Skip to main content
Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Add more than one column into list box

(0) ShareShare
ReportReport
Posted on by 155
Hello All,
 
I would like to add more than one column value into a list box.
 
List box has to be populated based on a selection from a combo box and here is the code I have written.
 
This works fine and shows me appropriate car make
 
Listbox property setup
 
 
But I would like to show more than 1 value
 
something like this, where we can show 4 column values
 
Categories:
  • Verified answer
    PraveenC Profile Picture
    155 on at
    Add more than one column into list box
    I have used following code to resolve the issue
     
    Listbox.Items=
     
    ForAll(
        'Company Car Requests',
        If(
            ThisRecord.'Car Status' = "Replaced" && ThisRecord.Country.Value = cmbcountry.Selected.Value,
            {'Car Status': 'Car Status' & " - " & 'Display Name' & " - " & 'Car Make' & " - " & 'Car Model' & " - " & 'Car Type' & " - " & 'Fuel Type'}
        )
    )
     
    Got the idea from this link
     
     
    So thanks to @dinusc 
  • PraveenC Profile Picture
    155 on at
    Add more than one column into list box
     
    Once user selects a country field from a combo box, I would have to show what cars are available from that list based on their status
     
    In the list box I have to show the Car Make_Model_Year_FuelType etc which are there in a share point list
     
     
    Form this list user will select one car and proceed further.
  • ronaldwalcott Profile Picture
    3,820 on at
    Add more than one column into list box
    Sorry, I don't understand
     
    This is the property screen of a listbox which allows multiple selections
     
    and the items in a list box
    for what you seem to require you will probably need to create your own component
  • PraveenC Profile Picture
    155 on at
    Add more than one column into list box
     
    Also how do i tag it to you like
     
    Hello ronaldwalcott 
  • ronaldwalcott Profile Picture
    3,820 on at
    Add more than one column into list box
    Sorry, I seem to have misunderstood what you are asking. 
    Do you mean having more than one data field in a list box of more than one data value referring to a single data field?
  • PraveenC Profile Picture
    155 on at
    Add more than one column into list box
     
    I dont seem to have an option to select more than one field
     
     
     
    Also I need to add "_" between each value
  • ronaldwalcott Profile Picture
    3,820 on at
    Add more than one column into list box
    You can select more than one value in a list box.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 1