mito icon indicating copy to clipboard operation
mito copied to clipboard

when modify one column how to cascade update other related columns

Open zhugw opened this issue 2 years ago • 2 comments

There are col1, col2, col3, col4, col5, col6,col7,col8 and

col4 = co1*col2*col3/500
col5 = col4/1000
col6 = col7/col4

Want once modify col1 or col2 or col3, other cols could also be modified. How to implement this purpose ?

zhugw avatar Jul 14 '22 01:07 zhugw

Currently, the best way to accomplish this is to just reopen the cell editors for the columns you want to update and resubmit the formulas. Does this work for your use case @zhugw ?

naterush avatar Jul 15 '22 17:07 naterush

It works, but I want it could be updated automatically and just current row, not entire dataframe

zhugw avatar Jul 16 '22 09:07 zhugw