|
|
keeping values
I am sure that this question has been asked and answered. I am creating a
worksheet for my class. I have a value in cell b2( I want use this value
thru out the sheet). Let say b2 = 10
b c d
3 5 6 8
4 3 7 1
I want to subtract each value from b2(10). How can I do this without doing
it manually?
|
|
0
|
|
|
|
Reply
|
Utf
|
4/1/2010 9:06:04 PM |
|
On Thu, 1 Apr 2010 14:06:04 -0700, AFL-math
<AFL-math@discussions.microsoft.com> wrote:
>I am sure that this question has been asked and answered. I am creating a
>worksheet for my class. I have a value in cell b2( I want use this value
>thru out the sheet). Let say b2 = 10
>
> b c d
>3 5 6 8
>4 3 7 1
>
>I want to subtract each value from b2(10). How can I do this without doing
>it manually?
Does that mean that you want the following end result
(if not, explain what result you do expect).
b c d
3 5 4 2
4 7 3 9
This may be accomplished by the following command sequence
Put -1 in any spare cell, say F10
Select cell F10 (that has the value -1)
Copy
Select cells B3:D4
Paste Special -> Operation = Multiply
Select cell B2 (that has the value 10)
Copy
Select cells B3:D4
Paste Special -> Operation = Add
Clear cell F10 (the spare cell)
Hope this helps / Lars-�ke
|
|
0
|
|
|
|
Reply
|
Lars
|
4/1/2010 9:44:07 PM
|
|
Refer to the cell via its absolute address: $B$2. That way as you
'drag/fill' formulas using it around on the sheet, it won't change.
To subtract a value from it
=$B$2 - 4
or even another cell reference
=$B$2 - D3
"AFL-math" wrote:
> I am sure that this question has been asked and answered. I am creating a
> worksheet for my class. I have a value in cell b2( I want use this value
> thru out the sheet). Let say b2 = 10
>
> b c d
> 3 5 6 8
> 4 3 7 1
>
> I want to subtract each value from b2(10). How can I do this without doing
> it manually?
|
|
0
|
|
|
|
Reply
|
Utf
|
4/1/2010 9:46:42 PM
|
|
|
2 Replies
166 Views
(page loaded in 0.747 seconds)
Similiar Articles: drag a formula downa column keeping one value the same ...I need to drag a formula down a column, but keep one value constant (when I drag the formula down, the values in the formula change according to the... Delete cell value but keep formula in cell. - microsoft.public ...After the formula in a cell has calculated a value I would like to reset the cell for the next use by deleting the value but keeping the formula in ... Hyperlinks keep losing their value - microsoft.public.mac.office ...What cars, SUVs and other don't lose their values? - Yahoo! Answers all US pickup trucks keep their value because they are so tough they can keep going for 200-200 ... Formatting 0 values to show blank cells - microsoft.public.excel ...The sheet is protected to protect the formula. How can I protect AND > > > not show anything in the cell WHILE keeping the value at "0"? -- Dave Peterson Reference to values disappear after closing file - microsoft ...Apparently this formula can't keep the reference when the file is closed But ... Reference to values disappear after closing file - microsoft ... Close Method [Excel ... how can I replace SQL query with VBA logic - microsoft.public ...The processing code may involve keeping the values of the last-visited row, and comparing with the current row. I didn't write this code because it depends on the finer ... Need to clear cell values, when a different cell is changed ...drag a formula downa column keeping one value the same ... Need to clear cell values, when a different cell is changed ... Need to clear cell values, when a different cell ... delete characters values - microsoft.public.access.queries ...Delete observations containing characters and keep numeric values ... How to delete observations containing characters e.g. 92z89 or abcd and only keep the ones with ... filter multiple values - microsoft.public.excel.newusers ...... data" only, the rest should be filtered out. i am talking about just keeping like ... Form filter with multi-column combo box in report ... multiple value filter list ... Arrange B values ascending order but keep attached to column A in ...The trick is to select BOTH cols A & B and then sort by B ascending. The values in col A will stay with the associated values in col B. So if we start with: 1/22 ... Keeping Core Values Alive | The CEO Advantage JournalWhat can business leaders do to continually reinforce the core values of their organizations, especially in tough economic times? Three CEOs share their experiences ... Keeping Identity Values When Bulk Importing DataData files that contain identity values can be bulk imported into an instance of Microsoft SQL Server. By default, the values for the identity column in the data file ... Microsoft Excel, keeping values constant when copying formulas ...Best Answer: I think u have to enter it as $D$5 not as !D!5 Hope it worked!! ... If you do not want it to change: 1) on copying down you put D$1. 2) on ... Keeping Nulls or Using Default Values During Bulk ImportBy default, when data is imported into a table, the bcp command and BULK INSERT statement observe any defaults that are defined for the columns in the table. For ... Microsoft Excel: Keeping a cell value constant trhoughout a list ...excel.itags.org: Microsoft Excel question: Keeping a cell value constant trhoughout a list of values, created at:Wed, 04 Jun 2008 15:20:00 GMT with 1,235 bytes, last ... 7/25/2012 9:39:35 PM
|
|
|
|
|
|
|
|
|