I have data that looks like this:
| Record | Region | Country of Sale |
| 1 | North America | USA |
| 2 | North America | USA |
| 3 | North America | USA |
| 4 | North America | USA |
| 5 | South America | USA |
| 6 | North America | USA |
I added the formula tool to create an IF statement to change the incorrect region name, it looks like:
If [Region]="South America" and [Country of Sale]="USA" then [Region]="North America" else [region] Endif
output column selected: Region; data preview: North America
and my output fixes the problem, but it is throw a 0 in a different record like:
| Record | Region | Country of Sale |
| 1 | North America | USA |
| 2 | North America | USA |
| 3 | North America | USA |
| 4 | 0 | USA |
| 5 | North America | USA |
| 6 | North America | USA |
Not sure how to fix this problem.