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

Cross Pivot Renaming and Displaying in Email Body

bigbang
6 - Meteoroid

Hello,

I have a dataset where the columns are as follows:

IdCategoryAgeing Bucket
A1Type10-5
A2Type25-10
A3Type211-20
A4Type15-10

 

I need to create a pivot table with

Row-> Category

Column -> Ageing Bucket

Value -> Count of Ids

 

Problem facing here using Cross tab: The column is renaming to Count_5_10 , Count_11_20. I want this to be renamed to the original values 5-10,11-20 and so on

After renaming this, I need this pivot to be part of email body. 

 

Any help is appreciated.

1 REPLY 1
binuacs
21 - Polaris

@bigbang use the dynamic rename tool to rename your column headings

 

Replace(Replace([_CurrentField_],'Count_',''),'_','-')

 image.png

Labels
Top Solution Authors