Hello.
I have a data containing multiple columns and in some case's some of the columns may or may not be there.
Let me explain:
1. This workflow is used by many people, of which different columns may exist.
2. The problem is if a column doesn't exist, my workflow wouldn't be executed.
3. I want Alteryx to determine if the column exist and which one should be imported from the dataset.
My income data could look like this:
| Type | Type code |
A | 10 |
| B | 12 |
| C | 11 |
| A | 10 |
The problem is that the data in the [Type Code]-column, may have another name in next income dataset, like:
And a third dataset could look like this:
| Type | Assembly code |
A | 10 |
| B | 12 |
| C | 11 |
| A | 10 |
How can i determine when importing the data from an excel-workbook which of the columns contain the code?
In must case's only one of the three columns ([Type code], [Key Code] or [Assembly Code]) exist in the dataset. But there might be some case's where two of the three columns does exist, but one of them will be empty.
In addition, when Alteryx have "detected" the correct column, I would like to rename it e.g [Code]
Hope you guys can help me - thanks