need help???

A

adam

1.
if i have a sheet where some of it has data from a diff sheet using a formula
how can i actually copy the whole table with data only and not the formula
so i wont need to rely on the other sheets.

2. if i have 2 column2 lets say Address1 address2 how can i merge those 2 on
every row? it is important that when it merges it will place a space between
the merged data so it one be one word.

Thank you!!!
 
F

FSt1

hi
1. copying something assumes that your going to pasted it somewhere. when
you paste, paste special as values. this way the the formula will turn into
hard data.
2.assuming data is in column A and B....use this formula in Column C...
= A2 & " "& B2.
Copy column C and pastes special as values in Colunm C. see 1 above.
Delete Columns A and B. (or archive if needed)

Regards
FSt1
 
R

Ron Rosenfeld

2.assuming data is in column A and B....use this formula in Column C...
= A2 & " "& B2.

I would suggest

=TRIM(A2 & " " & B2)

in case there is nothing in B2

--ron
 

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