We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Date format is not appearing correct

shahnawaz_khan
8 - Asteroid

Hi 

 

When I am "Cross Tab" to use vertical date in horizontal format then it converts date format "-" to "_"

 

Please check 2nd table, error highlighted in red color. 

 

From  below  
DateCountryCount
01-Jan-24US1
01-Jan-24Africa1
01-Jan-24UK1
01-Jan-24Canada1
01-Jan-24France1
02-Jan-24US1
02-Jan-24Africa1
02-Jan-24UK1
02-Jan-24Canada1
02-Jan-24France1
03-Jan-24US1
03-Jan-24Africa1
03-Jan-24UK1
03-Jan-24Canada1
03-Jan-24France1

 

 

To below         
Country01_Jan_202402_Jan_202403_Jan_202404_Jan_202405_Jan_202406_Jan_202401_Feb_202402_Feb_202403_Feb_2024
US111111111
Africa111111111
UK111111111
Canada111111111
France111111111

 

Can we convert "_" to "-" again

3 REPLIES 3
Raj
16 - Nebula

@shahnawaz_khan 
use dynamic rename
replace([_CurrentField_],"_","-")

this will solve the problem.
mark done if solved.

binuacs
21 - Polaris

@shahnawaz_khan use the dynamic rename tool

image.png

shahnawaz_khan
8 - Asteroid

thanks Raj, that helped allot

Labels
Top Solution Authors