I am creating a PO System. When I enter the name of who is making the request I want to assign a number to this person.
This is what I have so far.
=IF(Request1 = "Greg", 1)
When i try to add to that I get #UNPARSEABLE
=IF(Request1 = "Greg", 1), IF(Request1 = "Bill", 2)
what am i doing wrong?