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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top