Hi alteryx engineer
I need to read data from an file and update some of the data due to specific condition and write it back, for an example, i want to modify the AMT to 555 for all data with column Countif = 2 (real case has bunches of data)
| RecordID | AMT | Countif | FUND |
| 2 | 233 | 1 | AA |
| 3 | 343 | 2 | BB |
| 7 | 0 | 3 | CC |
| 8 | 0 | 2 | DD |
I have one approach is that read all data and update then write it back, just wondering is there any better solution ?