Question
You are given a list of QXZ audit clients. You are told if the firm is large or small and if they passed or failed
You are given a list of QXZ audit clients. You are told if the firm is large or small and if they passed or failed an audit. The information defines when the next audit will be. The rules are: 1. If a firm is large and failed, their next audit is in two months. 2. If a firm is large and passed, their next audit is in three months. 3. If a firm is small, their next audit is in four months. Using the worksheet Audit, transform the data from column D to column G to an Excel Table and name it TallyData. Write a function using LAMBDA(last_audit,company_size,audit_result,LET(...)), where last_audit is a column of dates, company_size is a column of either "large" or "small" and result is a column of either "pass" or "fail". Name the function NextAudit and call it on the given list of QXZ audit clients. NextAudit will correctly implement the three rules spelled out above. Use the DATE(...) function to add months to the previous audit date. You are not allowed to use the EDATE(...) function.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started