display formula - selected cells only

O

okey

low hours pilot here

Ctl ` toggles the value/formula display mode for the entire ss. Is
there a way to toggle it for selected cells only?
 
J

joel

You can use a simple UDF. Put on worksheet

=getformula(B10)


the UDF is below

Function getformula(target) As String

getformula = target.Formula

End Functio
 
Top