I am working on an approval by facility.
The first iteration had one approver list, this is working great.
=IF([Contract Expense Variance]1 < 5001, (VLOOKUP("5K", {Voting List Levels Range 6}, 2, false)), IF(AND([Contract Expense Variance]1 > 5000, [Contract Expense Variance]1 < 15001), (VLOOKUP("15K", {Voting List Levels Range 6}, 2, false)), IF([Contract Expense Variance]1 > 35000, (VLOOKUP("100K", {Voting List Levels Range 6}, 2, false)), (VLOOKUP("35K", {Voting List Levels Range 6}, 2, false)))))
Now I need to add the facility option, I have created two approver lists
I believe this should be a IF(AND statement, but I have not been able to crack it. Any ideas or suggestions would be appreciated.