Hello,
how can i update column title into specific title "Account". every time i upload new data into my workflow will change the column title but one column need to consistent "Account". Based on example below i use dynamic select tool to pick column 2([FieldNumber=2]) and now need to change this title into "Account"
Month 1 input data
| month | item | amount |
| 1 | a | 10 |
| 2 | b | 20 |
| 3 | c | 24 |
| 4 | d | 56 |
Month 1 expected Output
| month | Account | amount |
| 1 | a | 10 |
| 2 | b | 20 |
| 3 | c | 24 |
| 4 | d | 56 |
Month 2 input data
| Product | Series | amount |
| A1 | AA | 10 |
| B1 | BB | 20 |
| C1 | CC | 24 |
| D1 | DD | 56 |
Month 1 expected Output
| Product | Account | amount |
| A1 | AA | 10 |
| B1 | BB | 20 |
| C1 | CC | 24 |
| D1 | DD | 56 |