Melissa, besides these comments, look at Excel's HELP on the subjects of
absolute and relative addressing, and on Fill.
You have values in A1:A30 and want to multiply each by 7 with result showing
up in column B. So in B1 you'd put the formula
=A1 * 7
and "fill" that formula down to row 30. Excel will automatically change the
row number, so in B2 the formula will become =A2 * 7, and so on down to row
30 where the formula will have become =A30 * 7
Now if you wanted to do the multiplication on the values in column A and
have them show up in row 1 from B1 across to AE1, you could do it with a
formula like this in B1 that you would fill across to AE1:
=OFFSET($A$1,COLUMN(B1)-2,0) * 7
What that says is: using cell A1 as the base location, choose a cell that is
offset from it by the number of rows calculated by taking the column number
the formula is in and subtracting 2 from that, and without any column offset
and multiply that cell's value by 7.
When the formula is in column B, the "COLUMN(B1)-2" value is zero, but when
it is filled to column C, that becomes "COLUMN(C1)-2" which is 3-2 = 1. So
it is working down the rows in column A. Hope this all helps some.
As I said, use Excel's Help on Absolute and Relative addressing to help
understand how the $ plays into effect in cell addresses. The help on Fill
will tell you how to fill the formulas I've provided down/across the sheet.