Thread: Address
View Single Post
  #2   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
only possible with VBA. This would require for example the following
kind of UDF:
public function get_formula(rng as range)
if rng.hasformula then
get_formula=mid(rng.formula,2,1024)
end if
end function

Now if your formula is in cell B1 use
=GET_FORMULA(B1)


--
Regards
Frank Kabel
Frankfurt, Germany


Grisha Jose wrote:
If I type a formula in a cell " =C10 ". In another cell I must get
result C10.

can any body help me