Hi Alteryx community,
I have a data set where I want to remove any information that is in the apprentices/brackets. Below is an example of the data.
| Lot Status |
| 12345 (Available) |
| 6789 (Not Available) |
| 2468 (Available) |
| 1357 (Available) |
| 111111 (Not Available) |
| 2222222 (Not Available) |
What would be the formula needed to clean up the data, so it looks like this:
| Lot Status |
| 12345 |
| 6789 |
| 2468 |
| 1357 |
| 111111 |
| 2222222 |