Copying Cell Values

  • Thread starter Thread starter crabtrees
  • Start date Start date
C

crabtrees

I'm currently using a macro:

Sub copyvalue()
With Sheets("Capacity")
Range("O14").Value = .Range("BM4").Value
End With

End Sub

But I'm very interested in getting any help to upgrade this to a
function so that I do not have to run the macro to get the value copied
from BM4 to O14.

I appreciate your help in advance.
 
Check your other post.
I'm currently using a macro:

Sub copyvalue()
With Sheets("Capacity")
Range("O14").Value = .Range("BM4").Value
End With

End Sub

But I'm very interested in getting any help to upgrade this to a
function so that I do not have to run the macro to get the value copied
from BM4 to O14.

I appreciate your help in advance.
 
Sorry...I need to keep the reference out of the cell so that it can't b
written over.

Thanks
 
Then I don't understand why you can't use the subroutine.

If you can't use a built in formula, I would expect that you wouldn't want to
use a user defined function.
 

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