Hi there,
I am fairly new to alteryx. I don't even know how to ask a question 😞 sorry!
Please see my input and the desired output below.
In the input there will be empty values for the ID field (string)?
I have to assign new IDs to these products in the format 'Product.xxx'. But the xxx' part has to increased by 1 each time.
Is there a way alteryx can auto-fill the ID field (string)?
Example input:
| ID | Product |
| Product.001 | Apple |
| Product.002 | Orange |
| Product.003 | Mango |
| Â | Kiwi |
| Â | Banana |
Output I am after should look like this:
| ID | Product |
| Product.001 | Apple |
| Product.002 | Orange |
| Product.003 | Mango |
| Product.004 | Kiwi |
| Product.005 | Banana |
Thanks heaps,