how do i display formulas in only certain cells?

F

Frank Kabel

Hi
you'll need VBA. e.g. 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

mototrile_x said:
i need to display 9 cells functions and the rest the value of the
function
 
M

mototriple_x

sorry, i must not be up to speed on the abreviations, please tell me what
"VBA" and "UDF" stand for. i tried =get_formula(C5) for a formula in cell C5.
the formula is =PMT(C$4/12,$A5,$L$2) and i need it to be displayed along with
others in another section of my worksheet
thanks
mototriple_x
 
K

K.S.Warrier

Hi,
In the edit menu, click the clipboard.Copy the values of cells selected
required in the clipboard(maximum 12 numbers) and click this from clipboard
to the required cells.
K.S.Warrier
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top