Estoy haciendo crecer una tabla y también tengo un gráfico asociado a ella pero cuando añado columnas tengo que volver al gráfico y "editar referencias de datos". Cuando el gráfico crecía de derecha a izquierda, no tenía este problema. El gráfico seguía creciendo porque añadía filas dentro del rango. Me pregunto si esto puede ser automatizado o manejado de manera diferente.
Esta es la forma en que lo estaba haciendo y el gráfico no necesitaba ser editado.
tell application "Numbers"
tell the table 1 of sheet 1 of document "The Doc"
delay 1
add column before the range "E1:E2"
set the value of cell "E1" to time string of (current date)
repeat with i from 2 to the count of cells of column "E"
set the value of cell i of column "E" to (the value of cell i of column "C")
end repeat
end tell
end tell
Así es como lo estoy haciendo ahora pero siempre tengo que editar las referencias de los datos.
tell application "Numbers"
activate
tell the table 1 of sheet 1 of document "The Doc"
set column count to column count + 1
set myLastColumn to column count
set the value of cell 1 of column myLastColumn to time string of (current date)
repeat with i from 2 to the count of cells of column "A"
set the value of cell i of column myLastColumn of rows to (the value of cell i of column "D")
end repeat
end tell
end tell