This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
Solved! Go to Solution.
You could do it with a combination of the DynamicRename and the DynamicSelect tools.
Using you input data, create new names named "Keep-" + [FieldName]. Then use the DynamicRename tool with the mode "Take field names from right input rows" to rename your fields.
And then use the DynamicSelect in formula mode with a formula:
Left([Name],5)=="Keep-"
And finally use another Dynamic rename to get rid of the Keep- in formula mode with something like:
SubString([_CurrentField_], 5)
This would all be easy to button up as a macro with 2 inputs.