Offsetting formula results

  • Thread starter Thread starter Patrick Simonds
  • Start date Start date
P

Patrick Simonds

I would like to place the formula below in cell D29 and have the result show
in cell C29. There can be no formula in cell C29. Is this possible?
 
Hi Patrick,

Try:

'=============>>
Private Sub Worksheet_Calculate()
Me.Range("C29").Value = Me.Range("D29")
End Sub
'<<=============

This is worksheet event code and should be pasted into the worksheets's code
module (not a standard module and not the workbook's ThisWorkbook module):
 
Thank you that did the trick


Norman Jones said:
Hi Patrick,

Try:

'=============>>
Private Sub Worksheet_Calculate()
Me.Range("C29").Value = Me.Range("D29")
End Sub
'<<=============

This is worksheet event code and should be pasted into the worksheets's
code module (not a standard module and not the workbook's ThisWorkbook
module):
 

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