I’m looking to build an automation in order to create a report
Basically the situation is as follows:
A folder containing 5 folders (countries), each country containing folders for customers (around 5 customers for each country), each customer containing folders for each month, each month containing an email with a report
My question is, would it be possible to build an automation that extracts certain information from each report? Each report follows the same template, only data refering to each customer and period differs. How would you go about this?
Without knowing the quality and type of data it is hard to come up with a detailed solution design.
However, a generic approach would be:
Download all emails in the respective folders. (Get Outlook Mail-activity)
A) Depending on your folder structures you can consider using the For Each Email-activity.
Loop through all reports and do the following: (For Each File in Folder-activity)
A. Read report. (Read Range-activity)
B. Extract relevant data. (Filter Data Table or Matches(RegEx))
C. Add or append extracted data to aggregated report. (Append Range-activity)