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 Cloud Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Cloud.

I want fill the data in the Mar coulmn based on formula "=if(Row!=1,prev(mar,1),mar)

GowtamK
7 - Meteor

I want fill the data in the Mar coulmn based on formula "=if(Row!=1,prev(mar,1),mar)

Used the sort by S.no,IDs,Row.

 

 

2 REPLIES 2
APrasad_Tri
Alteryx Alumni (Retired)

Hi @Gowtam kumar? , thank you for your question.

 

You have to use the FILL() function in order to get the desired output as shown below :

 

In the IF() function condition, use the below code:

IF(row !=1,fill(mar,-1,0),mar)

Hope this helps.

Best,

Apeksha Prasad

GowtamK
7 - Meteor

Thanks for quick response, its working well