what I mean is using a single / multiple 'Calculation' field to strip , delete and transform and get the output in single window, then using split on delimiter
Could be a good opportunity to
showcase another video as chatgpt player real nice with AETL python calculation with instructions (I posted them earlier)
Python Script Guidelines for ETL-Tools
Execution Rules
- Write top-down scripts; no main() or function wrappers.
- Final output must be assigned to Result.value (case-sensitive).
- Do not use print().
Input Handling
- All inputs are strings by default.
- ETL-Tools variables like [F001], [F002], etc., can be used directly.
- Convert inputs to the required types as needed.
Notes
- Do not initialize Result; it’s provided by ETL-Tools.
- Use ETL variables directly in expressions—no need for intermediate assignments.
---
Example: String to Array + Condition
python
input_string = "3;

"
array = [int(x) if x else None for x in input_string.split(

]
if array[0] == 1:
Result.value = "YO"
elif array[1] != 1:
Result.value = "BB"
elif array[2] == 3:
Result.value = "DD"
else:
Result.value = "No condition met"
Example: Using ETL-Tools Variables
python
result = int([F001]) + int([F002]) + 100
Result.value = result