Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi u r help will be appreciating
if i calulate a value in particular cell with reference to other cell and now how can i keep only calculated data n not the formula may it be in same cell or other cell if i copy i eg if i calculate sum of cel A1 and B1 in cell C1 i want is the c1 should show only the value attend and not the formula viz a plain figure |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Copy the cell, then Edit/ Paste Special/ Values.
-- David Biddulph "amol" wrote in message ... hi u r help will be appreciating if i calulate a value in particular cell with reference to other cell and now how can i keep only calculated data n not the formula may it be in same cell or other cell if i copy i eg if i calculate sum of cel A1 and B1 in cell C1 i want is the c1 should show only the value attend and not the formula viz a plain figure |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Perhaps this might be of interest
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) If Target.Address = Range("a1").Address _ Or Target.Address = Range("b1").Address _ Or Target.Address = Range("c1").Address Then Range("c1").Value = Range("a1").Value + Range("b1").Value Else End If End Sub Vaya con Dios, Chuck, CABGx3 "amol" wrote: hi u r help will be appreciating if i calulate a value in particular cell with reference to other cell and now how can i keep only calculated data n not the formula may it be in same cell or other cell if i copy i eg if i calculate sum of cel A1 and B1 in cell C1 i want is the c1 should show only the value attend and not the formula viz a plain figure |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Keeping cell data with records from a query | Excel Discussion (Misc queries) | |||
how to merge many cells to one cell with keeping all data | Excel Worksheet Functions | |||
how to merge many cells to one cell with keeping all data | Excel Worksheet Functions | |||
keeping cell format with formula | Excel Worksheet Functions | |||
clearing a cell and keeping the formula | New Users to Excel |