AppleScript to adjust row/height dimensions
I want the cells of a table to resize uniformly to fully fill its sheet's printed page on both the x and y axes.
There doesn't seem to be a way to adjust the dimensions of a table's cells from the print view, meaning any number of trips between views to select all the rows/columns and fiddle about with the size adjuster.

I want the columns to fill the printed page without spilling over into the next page
I wrote an AppleScript that lets me choose the active sheet's first table's cells' height or width, then adjust the chosen dimension of the cells by any uniform amount.
It still takes a bit of trail and error, but there's no need to select all the rows/columns and fiddle about with size adjuster. (The 'Row & Column Size' text fields are of no use when the cells have variable heights/widths.)
Does anyone have alternative/improved solution to this problem? If not, the code's here for anyone to use/customise.
set _dimensionText to text returned of _displayDialog("Table's Cells' dimension?", "Change Cells' Height or Width", "height") if _dimensionText is not in {"height", "h", "width", "w"} then return try set _amount to (text returned of _displayDialog("Amount to add/substract?", "Change Cells' Height or Width", "2")) as real on error a number b return end try tell application "Numbers" activate delay 0.5 set _activeSheet to active sheet of document 1 set _table to table 1 of _activeSheet if _dimensionText is in {"height", "h"} then set _dimensions to rows of _table repeat with _dimension in _dimensions set _height to height of _dimension set height of _dimension to (_height + _amount) end repeat else set _dimensions to columns of _table repeat with _dimension in _dimensions set _width to width of _dimension set width of _dimension to (_width + _amount) end repeat end if end tell on _displayDialog(_message, _title, _defaultAnswer) set _dialog to display dialog _message with title _title default answer _defaultAnswer end _displayDialog