function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Frank 2UFrank 2U 

Select a list of records from text or file input in screen flow?

I'd like to make a screen flow where the user submits a list of record IDs (via text field, file upload, or similar) and the flow gets those records to a collection (then manipulates them as needed).
Is there a built-in way to do this, or an installable package, or do we need to use custom code? If the latter, is it worth using Flow at all, or should we just do the whole thing in code?
MagulanDuraipandianMagulanDuraipandian
Frank,
You can use the Get Records component to fetch the records.

You can use LWC to display the records: https://www.infallibletechie.com/2020/04/lwc-for-flow-in-salesforce.html

 
Frank 2UFrank 2U
To clarify: I need to get a collection of records based on a list of names or IDs.
SELECT objects WHERE field is in { value1, value2, value3, ... }
Does the method on that page work correctly if you give it a variable containing multiple values? What is the syntax?
Thanks.