BYU Student Author: @Spencer
Reviewers: @Jae, @MitchFrei, @Mike_Paulsin
Estimated Time to Solve: 25 Minutes
We provide the solution to this challenge using:
- Power Automate
- Go here to perform this challenge in Python
Need a program? Click here.
Overview
Each week, your assignment as an intern is to identify salespeople who exceed the company’s
standard for excellence ($85,000 in sales or more). After spending a few weeks analyzing data and generating reports manually, you’ve decided to try your hand at automating the process. Luckily, your company provides you access to Power Automate! If successful, you will save both yourself and your fellow interns hours of monotonous work.
Instructions
You must create a power automate workflow that does the following:
- Displays an input box that requests the file path location of the “Sales_Superstars” Excel sheet.
- Opens up the “Sales_Superstars” Excel sheet using the file path location that was requested in the input box.
- Reads the “Employee_Sales” data table located in the “Sales_Superstars” excel sheet.
- Closes Excel.
- Uses a For Each loop to iterate through every row of the “Employee_Sales” data table that was read in step 3. For every row of data that contains a salesperson who sold over $85,000 worth of goods, add the name of that salesperson to a list.
- After iterating through each row of data, display a message that contains the final list of salespeople who surpassed $85,000 in sales.
Data Files
Solution
The following is a list of employees with sales over $85,000:
Clyde Meyer, Anthony Byrd, Melinda Foster, Nina Dolan, Cecil Santos, Omar Thornton, Flora Harris
Solution Video: Challenge 27|POWERAUTOMATE – Sales Superstars