BYU Student Author: @Alex_Garrett
Reviewers: @TylerBooth, @DylanKing
Estimated Time to Solve: 20 Minutes
We provide the solution to this challenge using:
- Alteryx
Need a program? Click here.
Overview
Who’s paying taxes and how much are they paying? You’re exploring the possibility of starting your own CPA firm and in this quest, you figure it’s a good idea to investigate the effective tax rate on average for a CPA firm in the states you are most interested in: Washington, Oregon, California, Arizona, and Utah. You wrote a script to collect tax information on a sample of nearly 1000 companies in these states, and it worked! All the data follows the same format, but your script collected data from many sources, so there may be some redundancy.
Instructions
In practice, effective tax rates are calculated to determine how much tax a company is effectively paying. It is calculated by dividing a company’s tax burden by its taxable income. Calculate the average effective tax rate (using the total tax burden) for each state and order your results from greatest to least by the average rate.
NOTE: Companies may have multiple rows of data associated with the same year. Before performing your calculations, filter out unnecessary rows so that only the most complete row for each company remains. In other words, each company should only have one row of data before you calculate the average effective tax rate for each state.
Data Files
Suggestions and Hints
- Use the “ABSOLUTE” function to identify the rows with the most complete tax information.
- Sort the data by company, then by the sum of the absolute values greatest to least.
- Use a unique tool to filter out excess information.
Check Figures
Effective Tax Rates by State
- CA = 34.34%
- OR = 29.76%
- WA = 22.74%
- AZ 19.41%
- UT 17.71%
Solution
Challenge78_Solution.yxzp
Solution Video: Challenge 78|ALTERYX – Tax Tool