edit excel cells using vb code

  • Thread starter Thread starter Vijitha Vijayan
  • Start date Start date
V

Vijitha Vijayan

hi,
my problem is how to edit an excel cell when some other cells have been
modified using vb editor.
 
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.
 
Back
Top