excel

profilemary15


  • 2 years ago
  • 20
files (3)

Explanation-Week1-Exercise2-AUnpaidInvoicePenalty.pdf

Explana�on Week # 1 - Exercise 2-A – Unpaid Invoice Penalty This exercise is focused in the use of the IF Func�on

=IF(Condi�on, True Statement, False Statement) Condi�on can be simple condi�on or compound condi�on, and the result will be always TRUE or FALSE

The exercise has the following Ini�al Data:

For the column H (Fixed Penalty) in the exercise topic 2 says:

2. Some vendors have agreed on an industry-standard penalty of $45 on all past due accounts regardless of the past due amount or number of days past due. These vendors are iden�fied by the value TRUE in the corresponding row of column C. Write a formula in column H, which can be copied down the column, lis�ng the penalty for the corresponding account: $45 for vendors that are par�cipa�ng in this standard penalty and $0 for all other vendors. Only vendors that are owed past due balances are listed on this sheet.

Fixe Fee Penalty value is in the Cell B2, so any�me that we need to reference this value we will use the absolute reference $B$2

So, in this case if applied Fixed Penalty the Value is 45 ($B$2) otherwise will be Zero

The excel formula in column H is:

=IF(C9,$B$2,0)

For the column I (90 Days Penalty) in the exercise topic 3 says:

3. Calculate another possible penalty whereby only those accounts with 90-days past due balances are owed a fee. In column I, write a formula that can be copied down the column to calculate the penalty based on the following criteria:

• For accounts with a 90-days past due balance of $50 or more, apply a fee of 12% of the 90-days past due balance.

• For all other accounts, no penalty is applied.

90 Days Penalty amount is in the Cell B3, and Percentage of 90 Days Penalty is in B4 we will use the absolute reference $B$3 and $B$4

In Column F is the 90 Days Past Due

So, in this case if 90 Days Past Due is greater than 90 Days Penalty amount (B3) applied

90-Days-Past-Due that the Value is 50 ($B$3) * 90-Days-Penalty-Percentage that is 12% ($B$4) otherwise will be Zero

The excel formula in column H is:

=IF(F9>=$B$3,$B$4*F9,0)

In the same way con�nue looking column J and K