Hi all,
I am 90% complete with a flow and am currently stuck on an issue.
Below is my flow:
The steps are as follows:
- scheduled flow which runs a query against a PowerBi dataset
- Columns are: Job name, Director, Manager, Date, Client Type, % Billed, Fees
- CSV is created from above output
- File is created on sharepoint
- File content is retrieved
- CSV is parsed using Encodian
- JSON is parsed
- Variable called 'FilteredManager' is created'
- Apply to each loops through JSON output and looks for a specific 'Manager'
- If manager is found in the 'Manager' column, the row with all the relevant details is added to the FilteredManager array
- At the end of the process, all of the rows which belong to the 'Manager' are used to create a HTML table
- There is some CSS added to tidy up the design
- An email sent with said table
What I am having trouble with is this - I want to append two (2) additional columns to the HTML table that is emailed.
- the first column should have a check box (for each row) with the heading 'Close Job?'
- the second column should accept a dollar value with the heading 'Increase budget to'
The CSV file is created based on the query from the PowerBI dataset:
This will all them be emailed to the manager, at which time they can see the table which has information specific to them, and then select to either
- close the job by checking the checkbox; or
- increase the budget by entering a dollar amount
They can then send this on to a different team member.
Any help with this is greatly appreciated!