Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
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
binu_acs
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