Nested, and multiple IF statements
I'm trying to calculate a tiered interest percentage where a the first $500,000.99 gets a 1.2% rate, and any remainder above gets a 1% rate. I'm pretty sure I have multiple mistakes in my work so far.
Given C7 is as number field, I want the calculation to occur if C7>0. If true:
If C7≤500000.99, multiply (0.012÷12) x C7
If C7>500000.99, multiply (0.012÷12)) x 500000.99 and add to that ((0.01÷12)) x (C7-500000.99))
The first problem is I don't know how to nest the rest first IF (or otherwise construct the IF statements):
IF(C7>0)
(then …)
IF(C7≤500000.99),(0.012÷12)xC7)); IF(C7>500000.99),((0.012÷12)×500000.99)+((0.01÷12)×(C7−500000.99))