fill cells with a value from two previous cells

G

Guest

Hi,

I try to copy the letter value from column A and B to column C in the
example below with a formula:

A B C
1A A
2 I I
3...

Thanks,
FormulaChallenged
 
G

Guest

Assuming that there is a value in only column A or column B, try
=IF(A1="",B1,A1)--which means if cell A1 is blank, enter the value in cell
B1, otherwise enter the value in A1.
 
G

Guest

Thanks, it works well.

SVC said:
Assuming that there is a value in only column A or column B, try
=IF(A1="",B1,A1)--which means if cell A1 is blank, enter the value in cell
B1, otherwise enter the value in A1.
 

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