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
ahonahon 

create 1 or multiple records from a related list / flow question

Here is my requirement: check 1 or multiple records on a custom object's related list and from there, create 1 or multiple new records, on a different custom object.

1. Object A, select 1 or multiple records from Object B related list
2. from these selected Object B records, create 1 or multiple new records on Object C 

I currently have a screen flow which gets Object B records, utilizes a data table, loops and creates new record. however, the flow isn't working exactly how it should. Do you have any solutions or reccomendations?
 
Best Answer chosen by ahon
ahonahon
used a screen flow with a data table that displays related list records with a specific status which creates multiple records on separate custom object based on selected records.

All Answers

VinayVinay (Salesforce Developers) 
Hi Ahon,

Check below reference that might be closest possible example to bulk update records using flow.

https://salesforce-flowsome.com/mass-update-records-from-related-list-1/
https://salesforce.stackexchange.com/questions/396420/trying-to-get-a-flow-to-create-a-new-record-in-related-object-but-only-option-is
https://www.linkedin.com/pulse/creating-updating-multiple-records-salesforce-using-flow-mandadi

Please mark as Best Answer if above information was helpful.

Thanks,
ahonahon
@vinay I did in fact review each resource / link -- in reference to the first link, I'm not exactly mass updating rather needing to select multiple records from a related list or list view and create multiple records from each on a different object. the second link was a bit tough to decipher related to the language barrier (not talking about code, talking about french) and the third link addressed what I was thinking about but did not quite provide enough sufficient info. will see what solution I can find. currently, Im utilizing a record triggered flow however it does not resolve being able to do the following:

-inline edit
-select multiple records and create new records from selected
ahonahon
used a screen flow with a data table that displays related list records with a specific status which creates multiple records on separate custom object based on selected records.
This was selected as the best answer