Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Renaming changing dates in headers

Luciano-ip
6 - Meteoroid

Hi Team! 

 

I need to parse a report which has some dates as headers. I would like to rename them to something easier like "Balance". How can I do this taking into account that each day the header will change to a different date? This is to say, today the header would be 12/12/2023 and tomorrow 12/13/2023, etc.

 

Thanks in advance for your assistance! :)

2 REPLIES 2
binuacs
21 - Polaris

@Luciano-ip The Dynamic Raname tool would be an option for your usecase

image.png

Raj
16 - Nebula

IIF(REGEX_Match([_CurrentField_], "^\d{4}-\d{2}-\d{2}$"), "Balance",[_CurrentField_])

please use this in dymanic replace

 

Labels
Top Solution Authors