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

Add rows to existing column

Meghnagupta
8 - Asteroid

I need to add Balance, Reclass (Placeholder 1), Reclass (Placeholder 2), Reclass (Placeholder 3) and Reclass (Placeholder 4) so I was using below formula using Formula tool but unable to add data to existing Column Ending Balance. 

 

[Balance] +[Reclass (Placeholder 1)] + [Reclass (Placeholder 2)] + [Reclass (Placeholder 3)] + [Reclass (Placeholder 4)]

 

Could Someone help me in this. I think this simple formula should work, but it isn't working.

2 REPLIES 2
ShankerV
17 - Castor

Hi @Meghnagupta 

 

Please add ToNumber function

 

Its working in the sample file shared.

 

[Balance]+
ToNumber([Reclass (Placeholder 1)])+

ToNumber([Reclass (Placeholder 2)])+

ToNumber([Reclass (Placeholder 3)])+
ToNumber([Reclass (Placeholder 4)])

 

 

Many thanks

Shanker V

Meghnagupta
8 - Asteroid

@ShankerV : It worked! Thanks a lot

Labels
Top Solution Authors