Start Free Trial

Alteryx Designer Desktop Discussions

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

Changing Cell Names

tomtingley
8 - Asteroid

Hi,

 

For column 'Rent Type', I want to change all cells that show 'Operating Expenses' to 'Service Charge'.

 

I'm not sure how to do this.

 

I want to leave the other cells untouched too.

 

 

3 REPLIES 3
DataNath
17 - Castor
17 - Castor

Hey @tomtingley, the following Formula ought to do the trick:

 

IF [Rent Type] = 'Operating Expenses' THEN 'Service Charge' ELSE [Rent Type] ENDIF

 

Before:

 

DataNath_0-1681215813062.png

 

After:

 

DataNath_1-1681215828127.png

ShankerV
17 - Castor

Hi @tomtingley 

 

One way of doing this.

 

IF [Rent Type]="Operating Expenses"
THEN "Service Charge"
ELSE [Rent Type]
ENDIF

 

ShankerV_0-1681215908065.png

 

ShankerV_1-1681215920447.png

 

Many thanks

Shanker V

cjaneczko
13 - Pulsar

Use the formula tool. 

 

IF [Rent Type] = 'Operating Expenses' THEN 'Service Charge'  ELSE [Rent Type] ENDIF

 

Labels
Top Solution Authors