Can I display a cell based on a calculation (eg M(14/2)?

O

Otto Moehrbach

I don't know what you want to do. If you want a cell to display the result
of a calculation like 14/7, type "=14/7" without the quotes, in a cell and
hit Enter. HTH Otto
 
R

Ragdyer

If C1 contained
=14/2
Then you could display:
A7 with
=INDEX(A:A,C1)
OR
G1 (7th column) with
=INDEX(1:1,C1)

You could also use Indirect:
A7
=INDIRECT("A"&C1)
 
Top