Hello all,
I am trying to format some data in a Table.
The Column in question contains a part number and name.
"Data[[#Headers],[Part]]" which is formatted like "124578 Part1"
In the macro, I have split this delimited data at the space, and it works fine.
"B1"="124578" and "C1"="Part1"
The issue is when I call this sub macro from another macro. Instead of returning the two separate columns, it returns the original column and the second split column. Regardless if I have "Application.DisplayAlerts" on or not.
"B1"="124578 Part1" and "C1"="Part1"
Where can I track down where this is happening at?
I am trying to format some data in a Table.
The Column in question contains a part number and name.
"Data[[#Headers],[Part]]" which is formatted like "124578 Part1"
In the macro, I have split this delimited data at the space, and it works fine.
"B1"="124578" and "C1"="Part1"
The issue is when I call this sub macro from another macro. Instead of returning the two separate columns, it returns the original column and the second split column. Regardless if I have "Application.DisplayAlerts" on or not.
"B1"="124578 Part1" and "C1"="Part1"
Where can I track down where this is happening at?