![]() |
Adding a value from a different cell
Say there is a 5 in cell A1, I want cell B1 to display 7. So is there a way to make a formula that does something like this? ex. (A(variable)+2)=B(vairable) -- atomicski ------------------------------------------------------------------------ atomicski's Profile: http://www.excelforum.com/member.php...o&userid=31744 View this thread: http://www.excelforum.com/showthread...hreadid=514562 |
Adding a value from a different cell
In B1 put the formula
=a1 + 2 -- Kevin Vaughn "atomicski" wrote: Say there is a 5 in cell A1, I want cell B1 to display 7. So is there a way to make a formula that does something like this? ex. (A(variable)+2)=B(vairable) -- atomicski ------------------------------------------------------------------------ atomicski's Profile: http://www.excelforum.com/member.php...o&userid=31744 View this thread: http://www.excelforum.com/showthread...hreadid=514562 |
Adding a value from a different cell
You could use:
=a1+2 In B1 atomicski wrote: Say there is a 5 in cell A1, I want cell B1 to display 7. So is there a way to make a formula that does something like this? ex. (A(variable)+2)=B(vairable) -- atomicski ------------------------------------------------------------------------ atomicski's Profile: http://www.excelforum.com/member.php...o&userid=31744 View this thread: http://www.excelforum.com/showthread...hreadid=514562 -- Dave Peterson |
Adding a value from a different cell
If the end result is that a cell displays 'whatever number + 2' then:
=SUM(A1+2) Where cell A1 is the place where you put the number (not the formula). If you don't want a 2 to be displayed in the cell that has the formula when there isn't any data in 'A1', then you could type: =IF(A1="","",SUM(A1+2)) There are actually a lot of different ways to write this formula, I am not advocating one or the other, but this one works. Hope this helps. "atomicski" wrote: Say there is a 5 in cell A1, I want cell B1 to display 7. So is there a way to make a formula that does something like this? ex. (A(variable)+2)=B(vairable) -- atomicski ------------------------------------------------------------------------ atomicski's Profile: http://www.excelforum.com/member.php...o&userid=31744 View this thread: http://www.excelforum.com/showthread...hreadid=514562 |
All times are GMT +1. The time now is 08:22 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com