Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default copying cells with formulas, but to keep it alike in destination

Hello,

I am a bit confused on the copying function.
I know about absolute and relative and when yu copy ..it
can carry to relative formulas to the destination. Doing
it like you did from the source.
I want to copy it ( the value and the formula eactly as
it is to the destination. I have too many cells to go
back and add the $ to each one.
So is there quick way to do this that i am not aware of??
like a key to hold down or..?

Heres what i have:

in cells D7:D14..i have a sum formula and its value
returned. Now i want to paste it to the cells below in
D24:D31. What it does it shows the relative formulas for
the cells exact number below and etc...I dotn want the
relative value or formula. just the exact value and
formula of the first cells.

Any help??

thanks! mike
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 26
Default copying cells with formulas, but to keep it alike in destination

Sub CopyFormulas()
For i = 7 To 14
Range("D" & i + 17).Formula = Range("D" & i).Formula
Next i

End Sub


"mike" wrote in message ...
Hello,

I am a bit confused on the copying function.
I know about absolute and relative and when yu copy ..it
can carry to relative formulas to the destination. Doing
it like you did from the source.
I want to copy it ( the value and the formula eactly as
it is to the destination. I have too many cells to go
back and add the $ to each one.
So is there quick way to do this that i am not aware of??
like a key to hold down or..?

Heres what i have:

in cells D7:D14..i have a sum formula and its value
returned. Now i want to paste it to the cells below in
D24:D31. What it does it shows the relative formulas for
the cells exact number below and etc...I dotn want the
relative value or formula. just the exact value and
formula of the first cells.

Any help??

thanks! mike
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default copying cells with formulas, but to keep it alike in destination

I + 17 ??

what is 17??

thank you
-----Original Message-----
Sub CopyFormulas()
For i = 7 To 14
Range("D" & i + 17).Formula = Range("D" & i).Formula
Next i

End Sub


"mike" wrote in message

...
Hello,

I am a bit confused on the copying function.
I know about absolute and relative and when yu

copy ..it
can carry to relative formulas to the destination.

Doing
it like you did from the source.
I want to copy it ( the value and the formula eactly

as
it is to the destination. I have too many cells to go
back and add the $ to each one.
So is there quick way to do this that i am not aware

of??
like a key to hold down or..?

Heres what i have:

in cells D7:D14..i have a sum formula and its value
returned. Now i want to paste it to the cells below in
D24:D31. What it does it shows the relative formulas

for
the cells exact number below and etc...I dotn want the
relative value or formula. just the exact value and
formula of the first cells.

Any help??

thanks! mike

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 26
Default copying cells with formulas, but to keep it alike in destination

Just based on your example, it would add 17 to 7 and put the formula for d7 in d24, d8 in d25, etc.

"mike" wrote in message ...
I + 17 ??

what is 17??

thank you
-----Original Message-----
Sub CopyFormulas()
For i = 7 To 14
Range("D" & i + 17).Formula = Range("D" & i).Formula
Next i

End Sub


"mike" wrote in message

...
Hello,

I am a bit confused on the copying function.
I know about absolute and relative and when yu

copy ..it
can carry to relative formulas to the destination.

Doing
it like you did from the source.
I want to copy it ( the value and the formula eactly

as
it is to the destination. I have too many cells to go
back and add the $ to each one.
So is there quick way to do this that i am not aware

of??
like a key to hold down or..?

Heres what i have:

in cells D7:D14..i have a sum formula and its value
returned. Now i want to paste it to the cells below in
D24:D31. What it does it shows the relative formulas

for
the cells exact number below and etc...I dotn want the
relative value or formula. just the exact value and
formula of the first cells.

Any help??

thanks! mike

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default copying cells with formulas, but to keep it alike in destination

oh..a big "DUH" for me.. :)
-----Original Message-----
Just based on your example, it would add 17 to 7 and put

the formula for d7 in d24, d8 in d25, etc.

"mike" wrote in message

...
I + 17 ??

what is 17??

thank you
-----Original Message-----
Sub CopyFormulas()
For i = 7 To 14
Range("D" & i + 17).Formula = Range("D" &

i).Formula
Next i

End Sub


"mike" wrote in message

...
Hello,

I am a bit confused on the copying function.
I know about absolute and relative and when yu

copy ..it
can carry to relative formulas to the destination.

Doing
it like you did from the source.
I want to copy it ( the value and the formula

eactly
as
it is to the destination. I have too many cells to

go
back and add the $ to each one.
So is there quick way to do this that i am not

aware
of??
like a key to hold down or..?

Heres what i have:

in cells D7:D14..i have a sum formula and its value
returned. Now i want to paste it to the cells below

in
D24:D31. What it does it shows the relative

formulas
for
the cells exact number below and etc...I dotn want

the
relative value or formula. just the exact value and
formula of the first cells.

Any help??

thanks! mike

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
help Fill formulas, highlight cells to specified destination Dream Excel Discussion (Misc queries) 1 September 10th 09 03:10 PM
Formulas not copying to other cells Lance Hebert[_2_] Excel Discussion (Misc queries) 10 February 17th 09 04:50 PM
Combining alike cells? HoganD87 Excel Discussion (Misc queries) 2 August 14th 07 10:28 PM
formulas do not copy to destination cells, but as existing totals linky Excel Worksheet Functions 1 October 12th 06 02:40 PM
Copying Formulas In Cells That Are Not Nested grendel Excel Discussion (Misc queries) 1 April 26th 06 03:38 AM


All times are GMT +1. The time now is 11:42 PM.

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"