Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
TSter
 
Posts: n/a
Default Convert Values to formulas

I am running excel 2003. In general terms, I have a cell that has a value of
123 in it. I want to be able to copy another cell that has a value of 3 in
it and do some sort of "Paste Special-Formula-Add" so that the cell will now
show "=123+3" in it. if the cell already has =123 in it, then I can get it
to work, but it only has 123 in it so I end up with a new cell that has 126
in it. The problem is that I need to do this with thousands of cells and I
need to be able to do this so that I have an audit trail and that I know that
the original value was 123 and that I added 3 to it. Can anybody think of a
way that I can get this to work? I need to be able to automatically insert
an equal sign in every cell or have my paste funtion do this for me. Any
thoughts? I've tried everything i can think, except for a special macro.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
paul
 
Posts: n/a
Default Convert Values to formulas

what is the reltionship between the cells with 123 and 3 in them,ie is it
consistent through out
--
paul
remove nospam for email addy!



"TSter" wrote:

I am running excel 2003. In general terms, I have a cell that has a value of
123 in it. I want to be able to copy another cell that has a value of 3 in
it and do some sort of "Paste Special-Formula-Add" so that the cell will now
show "=123+3" in it. if the cell already has =123 in it, then I can get it
to work, but it only has 123 in it so I end up with a new cell that has 126
in it. The problem is that I need to do this with thousands of cells and I
need to be able to do this so that I have an audit trail and that I know that
the original value was 123 and that I added 3 to it. Can anybody think of a
way that I can get this to work? I need to be able to automatically insert
an equal sign in every cell or have my paste funtion do this for me. Any
thoughts? I've tried everything i can think, except for a special macro.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
TSter
 
Posts: n/a
Default Convert Values to formulas

I'm not sure I understand the question. Let's say I have 3 rows by 12
columns. I have to adjust each value in each cell by a different amount. I
have a spreadsheet with the original data that has the 123 values (obviously
there all different values). I have a second spreadsheet that has calculated
how much each of the 36 cells should change by. This sheet has the 3 values
in them. I want to copy the change 36 cells in the change sheet and do a
paste special add on the original and have the original file now show =123+3,
not 126. Make sense?

"paul" wrote:

what is the reltionship between the cells with 123 and 3 in them,ie is it
consistent through out
--
paul
remove nospam for email addy!



"TSter" wrote:

I am running excel 2003. In general terms, I have a cell that has a value of
123 in it. I want to be able to copy another cell that has a value of 3 in
it and do some sort of "Paste Special-Formula-Add" so that the cell will now
show "=123+3" in it. if the cell already has =123 in it, then I can get it
to work, but it only has 123 in it so I end up with a new cell that has 126
in it. The problem is that I need to do this with thousands of cells and I
need to be able to do this so that I have an audit trail and that I know that
the original value was 123 and that I added 3 to it. Can anybody think of a
way that I can get this to work? I need to be able to automatically insert
an equal sign in every cell or have my paste funtion do this for me. Any
thoughts? I've tried everything i can think, except for a special macro.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
paul
 
Posts: n/a
Default Convert Values to formulas

the only way i can think to do it is make a new text array.
In a cell on the second sheet type ="="&A1&"+"&A2,copy down and or across to
make a new text array copy and paste back into the original sheet.This
assumes the original value is in a1 and the change value is a2.Probably best
to paste this in an adjacent array so as to not overwrite actual calculation
values?
--
paul
remove nospam for email addy!



"TSter" wrote:

I'm not sure I understand the question. Let's say I have 3 rows by 12
columns. I have to adjust each value in each cell by a different amount. I
have a spreadsheet with the original data that has the 123 values (obviously
there all different values). I have a second spreadsheet that has calculated
how much each of the 36 cells should change by. This sheet has the 3 values
in them. I want to copy the change 36 cells in the change sheet and do a
paste special add on the original and have the original file now show =123+3,
not 126. Make sense?

"paul" wrote:

what is the reltionship between the cells with 123 and 3 in them,ie is it
consistent through out
--
paul
remove nospam for email addy!



"TSter" wrote:

I am running excel 2003. In general terms, I have a cell that has a value of
123 in it. I want to be able to copy another cell that has a value of 3 in
it and do some sort of "Paste Special-Formula-Add" so that the cell will now
show "=123+3" in it. if the cell already has =123 in it, then I can get it
to work, but it only has 123 in it so I end up with a new cell that has 126
in it. The problem is that I need to do this with thousands of cells and I
need to be able to do this so that I have an audit trail and that I know that
the original value was 123 and that I added 3 to it. Can anybody think of a
way that I can get this to work? I need to be able to automatically insert
an equal sign in every cell or have my paste funtion do this for me. Any
thoughts? I've tried everything i can think, except for a special macro.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
TSter
 
Posts: n/a
Default Convert Values to formulas

This did accomplish what I wanted! Thanks! Follow up though. I can copy
this text cell to another cell doing a Paste Special-Value. Do you know how
I can easily convert this cell from text back to an excel formula? I can
click in the cell and hit enter and it will do this, but I would need to do
this with thousands of cells. Can you think of any way to do this to a whole
selection of cells?

"paul" wrote:

the only way i can think to do it is make a new text array.
In a cell on the second sheet type ="="&A1&"+"&A2,copy down and or across to
make a new text array copy and paste back into the original sheet.This
assumes the original value is in a1 and the change value is a2.Probably best
to paste this in an adjacent array so as to not overwrite actual calculation
values?
--
paul
remove nospam for email addy!



"TSter" wrote:

I'm not sure I understand the question. Let's say I have 3 rows by 12
columns. I have to adjust each value in each cell by a different amount. I
have a spreadsheet with the original data that has the 123 values (obviously
there all different values). I have a second spreadsheet that has calculated
how much each of the 36 cells should change by. This sheet has the 3 values
in them. I want to copy the change 36 cells in the change sheet and do a
paste special add on the original and have the original file now show =123+3,
not 126. Make sense?

"paul" wrote:

what is the reltionship between the cells with 123 and 3 in them,ie is it
consistent through out
--
paul
remove nospam for email addy!



"TSter" wrote:

I am running excel 2003. In general terms, I have a cell that has a value of
123 in it. I want to be able to copy another cell that has a value of 3 in
it and do some sort of "Paste Special-Formula-Add" so that the cell will now
show "=123+3" in it. if the cell already has =123 in it, then I can get it
to work, but it only has 123 in it so I end up with a new cell that has 126
in it. The problem is that I need to do this with thousands of cells and I
need to be able to do this so that I have an audit trail and that I know that
the original value was 123 and that I added 3 to it. Can anybody think of a
way that I can get this to work? I need to be able to automatically insert
an equal sign in every cell or have my paste funtion do this for me. Any
thoughts? I've tried everything i can think, except for a special macro.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
deleting values in a worksheet without deleting the formulas patti Excel Worksheet Functions 1 October 28th 05 09:49 PM
convert $ value to day values bo Excel Worksheet Functions 2 May 15th 05 05:37 PM
How do I sum rounded values from two seperate formulas in Excel? Federali Excel Worksheet Functions 1 May 3rd 05 06:01 PM
Problem with named formula's nathan Excel Worksheet Functions 0 January 21st 05 04:07 PM
How to convert decimal values (dd.dddddd) to degrees/minutes/seco. Florin Balcu Excel Worksheet Functions 2 November 12th 04 05:12 AM


All times are GMT +1. The time now is 02:50 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"