Jump to content

Recommended Posts

Posted

I have a spreadsheet of addresses, and some address' have the same postcode as others.

 

I am trying to pull out all the rows that have the same postcode as another row.

 

Is this possible, how would I go about it?

Posted
Are all the postcodes the last 7 or 8 characters in the field? If so, you could use a similar technique to your earlier question. Can't quite remember what the answer was then. Could use "Right" as well, but I'm sure you'll get a more definite answer soon.
Posted

Its sorted I just went through and did it all manually :doh:

 

One other thing though, when using the keyboard to navigate through cells how can you type to append text and not overwrite the contents without using the mouse to double click on the cell? Been bugging me for years.

  • 2 weeks later...
Posted

Me again with more excel woes ...

 

Trying to compare 2 sets of columns, basically A B C D i want to check that A=B and C=D and then in column E to show YES or NO (1 or 0 or whatever)

 

I can get A and B comparing but not sure how to combine it into 1 column ?

Posted (edited)
Me again with more excel woes ...

 

Trying to compare 2 sets of columns, basically A B C D i want to check that A=B and C=D and then in column E to show YES or NO (1 or 0 or whatever)

 

I can get A and B comparing but not sure how to combine it into 1 column ?

Try this

=IF((A2=B2)*AND(C2=D2),1,0)

 

Edit: Sorry should have said, put this in E1, then copy down if or where necessary. It works like an If...then...else statement.

 

If condition (A2=B2)*AND(C2=D2) is TRUE then return 1 if the condition is FALSE then return 0

You could substitute the 1 and 0 for Yes and No.

 

Hope this helps.

Edited by leco

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...