Hi Everyone,
I'm hoping the community might be able to provide some support with a project I'm working on.
In essence, I am using a SharePoint list with each row being a user profile and the columns holding date information for qualifications and am using the 'Get Items' function to get the list.
The source web data is the EUSR website. I have already a list of names and numbers using the profile list and I have worked out how to scrape the qualifications and date data iterating through the profile list.
Currently, my flow scrapes the website and puts the results into the EUSRResults variable. For each of the resulting outputs from the scrape, I have figured out how to get the qualification name and the date, CurrentQualName and CurrentWorkingDate.
This I originally thought would be the tricky part, scraping the data but I was so wrong.
The issue I am facing is then using that data, relating it back to the SharePoint List profile and updating the dates in the profile. This issue takes several forms:
1. Because the EUSR information is dynamic there is no consistency to it therefore I cannot use the 'Update Item' function as if the variable doesn't exist during that iteration, the update fails and there's no way to populate the Update Item function dynamically.
2. Relating the fields - for example in the list, one of the dates is 'GL/6 Update' but during the get items, this field is called 'GL_0020x_6Update' as it is called in the list - therefore there's no easy way to match and update.
3. Had thought about updating individually via http request but that seems even more difficult.
At this point, I'm frustrated because I've got the data I need, but can't physically get it to the place where I need it.
Any help would be greatly appreciated!