How to store multiple data?

Hi guys!

Is it possible to store multiple data in a stored variable?

I am using this for my translation app so the user can see its history of translations.

Thanks.

2 Likes

You can save a list to a stored variable so yes, it’s possible. But you should use a local data source instead. It’s going to be much easier to manage.

This should be helpful. It’s not exactly what you need but it will show you how to work with data sources.

2 Likes

Use objects in the stored variable

2 Likes

maybe you just need to store a list of items - eg. a list of 7 amounts representing sales for the week, etc.?

3 Likes

Thanks everybody.

2 Likes

I don’t want a list of items, I want to be able to add a single piece of data, then another one, then another one and so on. No multiple at the same time.

2 Likes

Have you considered a Local Table?

Use the Database icon
image

Click the + button
image
Click Create New

image
Select Create your own table and then you can use it in your code as a Local Table and save whatever you want.

2 Likes

Yes, that’s the best option and that’s what’s shown in the video I posted as well. @codelover1234 if you try to use a local data source/table and have trouble, let us know.

2 Likes

Thanks

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.