
Announcements
Hi power apps community,
I want to make a power flow that maintains and updates lists. For example, if I have one main list called 'List A' and two sub lists, "List B" and "List C" both on different subsites, how can I link these lists to the main list so anytime a new item is created, it is also added to the main list and anytime a list item property is updated (ex. status), it updates in the main list without creating a new item?
Thanks,
Hi @jberglind ,
You could try something like:
1\Create two columns in ListA called 'ListBID' and 'ListCID'
For ListB
2\Create a flow with 'When an item is created or modified' trigger
3\List rows in listA and filter out the items whose 'ListBID' equals the ID returned by the trigger.
4\If the value is null then create a new item , if else then update the item in listA
For ListC
5\Create a new flow for listC
Best Regards,
Bof