Row Variable assignment

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have several rows of data
where I need to divide column a by column c
I'd like to somewhere on the sheet enter in
a cell M4, say the munber 25
and have a formula in M5 to
be = a(cellM4)/c(CellM4)
Can this be done?
 
Maybe
=indirect("a"&m4)/indirect("C"&m4)
or
=index(a:a,m4)/index(c:c,m4)
 
=(A1*$M$4)/(C1*$M$4) would be the same as =A1/C1, wouldn't it, Chuck?

I think the OP was looking at how to get A25/C25 in this case, so presumably
needs the INDIRECT function?
 

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

Back
Top