I want to insert a value into a cell.
I've identified where already, but as this script is dynamic I'd like to insert a new cell and shift (move?) automatically all the content in the same column down. e.g.

a
b
c
d
Now I insert X and would like the column to be:

a
b
x
c
d
Is this possible?

Regards