2 votos

¿En Números puede un gráfico seguir el rango creciente de una tabla?

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

1voto

Steve Torrence Puntos 8

No estoy seguro de que haya una forma mejor, pero esto está funcionando.

tell application "Numbers"
    tell the table 1 of sheet 1 of document "The Doc"
        set myColumn to column count
        add column before the column column count
        set the value of cell 1 of column myColumn 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 myColumn of rows to (the value of cell i of column "D")
        end repeat

    end tell
end tell

AppleAyuda.com

AppleAyuda es una comunidad de usuarios de los productos de Apple en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X