Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Fn = Cn * En

PLSSSSS I AM DYING.........FOR GOD SAKE TELL ME THIS........

Fx = Cx * Bx

where "x" is 1,2,3,4,5..................

means i want to generalize a column........ like

the values in "F" column should be product of that particular values in "C"
column and "B" column....


EXAMPLE:

F1= C1*B1

AND F2 = C2 * B2

AND F3 = C3 * B3............

like that i want to generalize the "F" column......... pls help me



  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Fn = Cn * En

Try this:

In F1 put this formula =B1*C1

Then use the mouse to drag the formula in F1 down as far as you need it to
work.

Put some values in columns B and C. Look at the results and see if that is
what you want.



"abhi" wrote in message
...
PLSSSSS I AM DYING.........FOR GOD SAKE TELL ME THIS........

Fx = Cx * Bx

where "x" is 1,2,3,4,5..................

means i want to generalize a column........ like

the values in "F" column should be product of that particular values in
"C"
column and "B" column....


EXAMPLE:

F1= C1*B1

AND F2 = C2 * B2

AND F3 = C3 * B3............

like that i want to generalize the "F" column......... pls help me





  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 112
Default Fn = Cn * En

Sub Macro1()

LastRow = 7 'put in the last row you want to multiply here
Range("F1").FormulaR1C1 = "=RC[-3]*RC[-4]"
Range("F1").AutoFill Destination:=Range("F1:F" & LastRow),
Type:=xlFillDefault

End Sub


"abhi" wrote:

PLSSSSS I AM DYING.........FOR GOD SAKE TELL ME THIS........

Fx = Cx * Bx

where "x" is 1,2,3,4,5..................

means i want to generalize a column........ like

the values in "F" column should be product of that particular values in "C"
column and "B" column....


EXAMPLE:

F1= C1*B1

AND F2 = C2 * B2

AND F3 = C3 * B3............

like that i want to generalize the "F" column......... pls help me



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



All times are GMT +1. The time now is 12:58 PM.

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

About Us

"It's about Microsoft Excel"