edit excel cells using vb code

V

Vijitha Vijayan

hi,
my problem is how to edit an excel cell when some other cells have been
modified using vb editor.
 
D

Dave Peterson

I'm not sure what you mean by editing the cell. If you know what you want to
do, your code could do the changing:

with activecell
.value = "This is now at the front: " & .value & " more at the back"
end with

If this doesn't help (and I don't see how it could!), post back with some more
details.
 
Top