How do I make a range of cells equal to one cell

  • Thread starter Thread starter jggsfl
  • Start date Start date
J

jggsfl

How do I make a range of cells equal to one cell outside the range. ie.all
the cells A10:A20 equal to D3
 
Select A10:A20 (all 11 cells)
type this:
=$d$3
and hit ctrl-enter to fill all the selected cells with that formula.

If D3 can be empty, you may want to use:
=if($d$3="","",$d$3)
 
Thank you, worked great.

Dave Peterson said:
Select A10:A20 (all 11 cells)
type this:
=$d$3
and hit ctrl-enter to fill all the selected cells with that formula.

If D3 can be empty, you may want to use:
=if($d$3="","",$d$3)
 

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