Bulk Table Edit

Hey! This thread should be relevant:

Short answer: you do this by either:

  • making a button column where each button modifies thisRow.Rating, then one button that presses all the buttons in the column, then delete the column.
  • or use FormulaMap in your single use button to iterate over each row and modify, e.g.
Movies.FormulaMap(
  CurrentValue.ModifyRows(Movies.Rating, Round(CurrentValue.Rating / 2))
)

There’s also a way without buttons, but it’d take much longer, so just do the FormulaMap as the fastest one.