Need help creating workflow

Need help creating workflow

I have 3 forms:
Add_Property
Add_Job
Bulk_Scheduler

When I submit the Bulk_Scheduler form, I want a workflow to loop through the Add_Property submissions and find any that match the parameters submitted with the Bulk_Scheduler inputs. For each record that matches the parameters submitted, I want to create a new job by creating a new record in the Add_Job form.

Here's what I have so far:

for each record in Add_Property [ Programs == Select_Program ]
{
if ( record.Address.postal_Code == Postal_Code )
    {
insert into Add_Job
[
Added_User = zoho.loginuser
<field> = <expression>
];

    }