Hi @keihimekawa ,
If you can identify the records (600) needed on a Text or Numeric field, you could collect them for the user logged in (a reference for the user would also have to relate to a Text field in the list. First set a Variable at App OnStart
Set(
vUserName,
User().FullName
)
Then assuming you have this name in the list (or can reference it with a text lookup) - could also be at App OnStart
ClearCollect(
colUserRecords, //call it whatever you want
Filter(
YourListName,
YourUserField=vUserName //you could also have a lookup in here
)
)
this is just a concept to answer your question.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.