Hello!
Currently I am building a formula to identify, based on a Partner's current tier, how close a Partner is to achieving the next tier by obtaining the total number of certifications needed to advance.
Example: Partner X is currently "Registered" tier which is Level (LVL) 1. In order to advance to the next tier they must achieve 2 certifications in each of the 4 categories. Each certification category is equal to 25%, so achieving 2 certifications in each would represent 100% in this formula cell.
Previously this formula was only identifying achievement for a single tier (Registered) & it was working well. Now when I try to add the current Level (LVL) into the mix, I've broken the formula. Once I've managed to solve this issue, I will be able to replicate it out over the other 4 tiers.
What do I need to change in order for this formula to verify the tier prior to adding up the certification progress? Below is an example of my broken formula:
=IF(AND(LVL@row = 1, [Technical Certified Individuals]@row >= 2, 0.25, 0) + IF(AND(LVL@row = 1, [Foundational Certified Individuals]@row >= 2, 0.25, 0) + IF(AND(LVL@row = 1, [Accredited Individuals - Technical]@row >= 2, 0.25, 0) + IF(AND(LVL@row = 1, [Accredited Individuals - Business]@row >= 2, 0.25, 0)))))