Formula to Value Problem

breakr19

New Member
Joined
Aug 5, 2011
Messages
6
I am trying to overcome a problem that I'm having trying to convert a formula result in one cell to that same value in a different cell.

I have read all about the copy and paste value method, but that does not work for me because I want to then take the new value and paste it in to a new sheet without having to copy and paste value every time.

In essence, I am looking for a formula that does the following:

O68=SUM(L4:L8)

C89=O68, with C89 being the value of the formula. So, then I can copy C89 into another sheet so that it transfers the value present in C89 rather than the formula found in O68.

Can anyone help me with that, and feel free to ask more questions of me if it was not clear?
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
If you do not want to do this manually, you will have to use VBA:

Code:
Range("C89").Value = Range("O68").Value

Amend as needed.
 
Upvote 0
Thank you for the quick answer.

I have never messed with VBA until now, and it's not too difficult, so I appreciate everything!
 
Upvote 0
I have never messed with VBA until now, and it's not too difficult, so I appreciate everything!

It's indeed fair to say that there are more difficult macros than the one above :-)

Glad to help you.
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,291
Members
452,902
Latest member
Knuddeluff

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top