I have the column headers
And the want to replace just the string in the below Image with the actual numerical months (ie 2025-09)
I know dynamic rename will replace if the column header matches exactly, but I just want the string portion matched.
Can you show a full example of the before data and desired (after) data? I think I'm following your ask, but not 100% sure. Even if the data is fake, it would be best to see the before and after examples.
Thanks, -Jay
@briankuhlmann
Maybe its something like this if I understand your intention correctly?
Hi, @briankuhlmann
The 2 solutions for you as below:
'2025-' +
PadLeft(ToString(ToNumber(Left([_CurrentField_], 1)) + 8), 2, '0') + REGEX_Replace([_CurrentField_], '^\dMonth', '_')