Need to loop though a custom list

Hi @Nikhil_Jain
Try this

  1. For Each Row in DataTable (your custom list data)

    • Input: LabelData (DataTable from entity)
  2. Inside loop:
    If Activity

    • Condition: row("CheckboxColumn").ToString = "True"
  3. Inside Then:
    Add Data Row (to a temporary DataTable if needed)
    OR
    Create Entity Record

    • Entity: OptionsData
    • Map fields: Label = row("LabelColumn").ToString, Checkbox = True

This loops through list, checks selected checkboxes, and creates records in OptionsData.

If you found helpful please mark as a solution. Thanks
Happy Automation with UiPath