I was hoping that someone could assist me with a formula that I'm trying to work out. The purpose of this formula is to calculate my payout based on my percent to goal. I've never had an Excel course and have been trying to construct this based on research, but it keeps giving an error 508 so I'm definitely doing something incorrect.
On my spreadsheet, cell B34 has my calculated % to goal and it is to be referenced in this formula.
The way that the formula should calculate is as follows:
$330 * % to goal * accelerator
Accelerators are
<50% - 0.00
50%-69.999% - 0.20
70%-79.999% - 0.50
80%-89.999% - 0.70
90%-109.999% - 1.00
110-129.999% - 1.15
130-159.999% - 1.50
160-199.999% - 1.17
200% and up - 2.00
So far I have:
=IF(B34<.5,(B34*330*0),IF(B34>=.5,(B34*330*0.2),IF(B34>=.7,(B34*330*0.5),IF(B34>=.8,(B34*330*0.7),IF(B34>=.9,(B34*330*1),IF(B34>=1.1,(B34*330*1.15,)IF(B34>=1.3,(B34*330*1.5),IF(B34>=1.6,(B34*330*1.75),IF(B34>=2,(B34*330*2))))))))))
If anyone can assist, I would appreciate it.
Bookmarks