Context
I'm building an app that use SP lists and Excel table
In the SP lists, I have
- "Template list"
a template is a container, identified with an Title ''MET000105' is one, and that contains a text field"linked project", 'PM00016/PM00017' , which are 2 projects
In the Excel table, I have mainly budget data
like
Project - subproject - Budget
PM00016 - PR00123 - 750
PM00016 - PR00234 - 200
PM00017 - PR00566 - 300
I'd like to calculate and display, in a field of one of my screen the total amount of budget for all linked project in the text field
When I had only PM00016 in the Text field in the template list item, I used
Sum(Filter(Tableau1;Codeprojetmétier=ListeTemplate.Selected.'Liste des projets metier');'Budget validé projet opérateur (BVE)')
that gave the good result
Now I change to PM00016/PM00017 and would like to do the same
I sense there is something to do maybe with ForAll and Split; but I can find it...