Missed the Q4 Fall Release Product Update? Watch the on-demand webinar for more info on the latest in Designer 24.2, Auto Insights Magic Reports, and more!
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