Hello, Everyone.
I have a commission sheet with many columns, and I have a 3 part formula to calculate commission based on 3 different % depending on which month of the contract the sales team is in. The first two IF statements work beautifully. The 3rd part I need to calculate that if the Month of Contract is greater than the Contract Length + 12 (months), then use the 12+ Month Contract Commission %. I have a tight deadline so any help would be appreciated. Here is the formula below. The bold part of the formula is not working.
=IF([Month of Contract]@row <= [Contract Length]@row, [Contract Amount]@row * [Initial Contract %]@row, IF([Month of Contract]@row > [Contract Length]@row, [Contract Amount]@row * [After Initial Contract %]@row, IF([Month of Contract]@row > [Contract Length]@row + 12, [Contract Amount]@row * [12+ Month Contract %]@row, 0)