Problem with Listpicker more than 1000+ List

hi im having a problem on list picker…when i click list picker with count of 1000+ List it exits…(on my list) i have 8 columns with 2000 rows… i need to show it on list picker for each Line is all 8(columns) data of each rows…
sample table Reference:
image

i want to show it on List picker each line like this with 1000+ List:

As a user it would be very nice to use the listpicker. Can you tell about your app?

offtopic:
Why do you have another account on the community? Only one is allowed. Should i delete the other one?

image

1 Like

It mean, you want to display all the items in a single list picker???

Where is your base data ? In a csv file, in a google sheet ?

maybe bcoz it’s a lot if data to show, that why your app us crashing?

In googlesheet

Maybe?..is there a limitation in list picker?..

Apology on this… i didnt notice that im currently using this account …the other one is my main…i use this for app sample making before taking/copy to main…

Let us assume your spreadsheet is anyone with the link can view, data is in Sheet44 and starts at A1

image

Add another sheet/grid to your google sheet, Sheet45
Place a formula like this in cell A1 (I have only done 4 samples here)

=arrayformula(if(Sheet44!A2:A="","",Sheet44!$A$1 & " " & Sheet44!A2:A & char(10) & Sheet44!$B$1 & " " & Sheet44!B2:B & char(10) &Sheet44!$C$1 & " " & Sheet44!C2:C & char(10) & Sheet44!$D$1 & " " & Sheet44!D2:D & char(10)))

This should display the data as you want it in the sheet

image

In your app, use a web component to call back the data in the sheet as a csv table, the display the contents of this table in your list view.

I have used App Inventor blocks:

There is probably a better way to construct the spreadsheet formula, but you only have to do it once…

1 Like