This should be so straight forward, but not sure why my formula doesn't work.
Table:
| Type | Region | MGR | ASST MGR |
| Store | IL | Tom | Bill |
| Store | GA | Jane | Jane |
| Shop | IL | Tim | Sue |
| Store | GA | Jane | Jane |
| Shop | IL | Tim | Sue |
| Store | GA | Jane | Jane |
| Shop | GA | Jen | Sam |
OutPut Column [MGR]
Formula:
IF [Type]="Store"
AND [Region]="GA"
THEN "Mary"
Else [MGR]
ENDIF
Desired Result:
| Type | Region | MGR | ASST MGR |
| Store | IL | Tom | Bill |
| Store | GA | Mary | Jane |
| Shop | IL | Tim | Sue |
| Store | GA | Mary | Jane |
| Shop | IL | Tim | Sue |
| Store | GA | Mary | Jane |
| Shop | GA | Jen | Sam |