Hello,
I'm trying to create a %Complete column based on a drop down list column called "Status". For example, I'm looking to combine these formulas into one cell, then copy and paste to all other cells in the same column. I'm very new at this and cannot figure it out. If there is a better way top accomplish what I'm after, I'm open to other ideas!
In other words, when I select "Testing" in my Status column, I'm looking for the %Complete cell in the same row to auto-populate an "85%".
=IF(Status11 = "Done", "100%")
=IF(Status11 = "Testing", "85%")
=IF(Status11 = "Approval", "70%")
=IF(Status11 = "In Progress", "50%")
=IF(Status11 = "To Do", "10%")
=IF(Status11 = "Backlog", "0%")
I understand each row wouldn't be "Status11", but the next cell down would be "Status12", so on and so forth. I know that much. 
Thanks,
Phil