Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Okay, here's my formula, very simple:
=D2/D51 Now that resulting value beigns in E2. When I try to drag the formula to do the same things in every following cell in Column E, it doesn't work. I want it to continue on down the line. BUT it not only changes D2 to D3, D4, etc...it changes D51 to D52, D53, etc......how do I get it to not do that, and yet reproduce on down the line correctly? Mind you I'm trying to get this done in a macro as well, so if I can just record the process, I'll just copy and paste the code into the macro. THANKS!!! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try
=D2/$D$51 A thumb rule: Put a $ in front of everything that should NOT change when you fill down/right. HTH. Best wishes Harald "bodhisatvaofboogie" skrev i melding ... Okay, here's my formula, very simple: =D2/D51 Now that resulting value beigns in E2. When I try to drag the formula to do the same things in every following cell in Column E, it doesn't work. I want it to continue on down the line. BUT it not only changes D2 to D3, D4, etc...it changes D51 to D52, D53, etc......how do I get it to not do that, and yet reproduce on down the line correctly? Mind you I'm trying to get this done in a macro as well, so if I can just record the process, I'll just copy and paste the code into the macro. THANKS!!! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Yeah, I figured that out shortly after I posted. *smacks forehead*
THANKS!!! :) "Harald Staff" wrote: Try =D2/$D$51 A thumb rule: Put a $ in front of everything that should NOT change when you fill down/right. HTH. Best wishes Harald "bodhisatvaofboogie" skrev i melding ... Okay, here's my formula, very simple: =D2/D51 Now that resulting value beigns in E2. When I try to drag the formula to do the same things in every following cell in Column E, it doesn't work. I want it to continue on down the line. BUT it not only changes D2 to D3, D4, etc...it changes D51 to D52, D53, etc......how do I get it to not do that, and yet reproduce on down the line correctly? Mind you I'm trying to get this done in a macro as well, so if I can just record the process, I'll just copy and paste the code into the macro. THANKS!!! |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Maybe you could just change the formula:
=d2/d$51 range("E2:E50").formula = "=d2/d$51" Maybe???? bodhisatvaofboogie wrote: Okay, here's my formula, very simple: =D2/D51 Now that resulting value beigns in E2. When I try to drag the formula to do the same things in every following cell in Column E, it doesn't work. I want it to continue on down the line. BUT it not only changes D2 to D3, D4, etc...it changes D51 to D52, D53, etc......how do I get it to not do that, and yet reproduce on down the line correctly? Mind you I'm trying to get this done in a macro as well, so if I can just record the process, I'll just copy and paste the code into the macro. THANKS!!! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Regression Leverage Formula (Jerry W. Lewis or Mike Middleton)already have DFITS formula | Excel Worksheet Functions | |||
Commenting custom formula fields/formula on formula editor | Excel Programming |