Hello! I have what I feel is a pretty simple problem statement but which I cannot find a lot of resources to assist with. I'm developing my own sheet for 2e AD&D and I'm maintaining two separate inventory sections- one for what is on someone's person, and one for their "stash" at home. I'd like to provide players a button to transfer items seamlessly between the two lists. Basically I have two fieldsets which contain identically constructed attributes, and I'd like to use a sheet worker to allow clicking the button to delete a row from one fieldset and construct the same line item in the other fieldset. (Please forgive the oddly named attributes, I'm modifying and existing sheet and don't want to lose data.) < fieldset name = "repeating_gear" class = "repeating_gear" > < table > < tr > < td >< input type = "text" name = "attr_geardesc" ></ td > < td >< input type = "number" name = "attr_gearquantity" ></ td > < td >< input type = "number" name = "attr_gearweigh" ></ td > < td >< input type = "number" name = "attr_geartotal" ></ td > < td >< input type = "text" name = "attr_gearloc" ></ td > < td >< button type = "roll" name = "roll_send_down" > ↓ &nbsp; Send </ button ></ td > </ tr > </ table > </ fieldset > < fieldset name = "repeating_stash" class = "repeating_stash" > < table > < tr > < td >< input type = "text" name = "attr_geardesc" ></ td > < td >< input type = "number" name = "attr_gearquantity" ></ td > < td >< input type = "number" name = "attr_gearweigh" ></ td > < td >< input type = "number" name = "attr_geartotal" ></ td > < td >< input type = "text" name = "attr_gearloc" ></ td > < td >< button type = "roll" name = "roll_send_up" > ↑ &nbsp; Send </ button ></ td > </ tr > </ table > </ fieldset > I assume I can get a sheet worker to execute a command when a button is pressed, and I actually see a way to remove a repeating set row via script worker, but I'm basically at a loss about creating a fieldset row in the other fieldset to match. Does anyone have suggestions or examples for this scenario? P.S. I'm also unfamiliar with how to format a code block on these forums. Markdown ``` is not functioning :(