sending text

A

Arthur

Pulling a value into a cell is easy.
But can you go the other way, ie, can you send text to
another cell and then have that cell be a value not a
formula? Or can you pull a value into a cell and then
immediately have that cell convert to the value (and not
remain a formula)?
-Arthur
 
R

Ron de Bruin

Use the value propety if you use a macro

Sub test()
Range("c1").Value = Range("a1").Value
End Sub

If you do it manual
copy a cell
choose Edit(menubar) paste special....Values
 
R

Ron de Bruin

Hi Arthur
We still wanted an automated cut and paste
Sorry you need macro's to do it

--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)




Arthur said:
Ron,
The problem is that in my case the resulting sheet was
for other people to use and I'm told that people tend to
instantly distrust anything with macros in it and close
the file immediately for fear of damage that the file
might do. We wanted to avoid this problem by avoiding
macros.
We still wanted an automated cut and paste type
scenario across worksheets, keeping a history of values.
In other words, if a cell is unpopulated make it a value
[cell reference, whatever], but thereafter do not change
it.
-Arthur
-----Original Message-----
Use the value propety if you use a macro

Sub test()
Range("c1").Value = Range("a1").Value
End Sub

If you do it manual
copy a cell
choose Edit(menubar) paste special....Values

--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)







.
 

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

Top