This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
The highly anticipated Alteryx Community tradition is back! We hope you'll join us!
Learn MoreHello,
I have a workflow and data set is currently looking like this
I would like to have column prt_7d_used_count for each prt_7d_used_flag=1 summing the previous rows within the same parent_part. Final data set should look like this
Other solution would be to to fill down 0 with 1 where wrong_flag=1 within the same parent_part
Solved! Go to Solution.
Thank you kat! This worked :)
Hello @steve87,
Another solution I've found to produce your desired outcome is to split the data in a filter using:
prt_7d_used_flag = 1
...before making the running count and then simpling unioning the data back together again.
Sam :)