+ Reply to Thread
Results 1 to 10 of 10

Remove Duplicate Addresses

  1. #1
    Registered User
    Join Date
    07-06-2009
    Location
    Columbus, OH
    MS-Off Ver
    Excel 2003
    Posts
    14

    Remove Duplicate Addresses

    Hello,

    I have 2 issues i am trying to work through, i have a spreadsheet with 3 data sheet tabs, the first issue i have is in Data sheet 1 I have a lot of duplicate addresses, I was wondering if there is a way to filter out the duplicate addresses so that only one of each address is showing.

    Issue 2 that i have is a lot more complicated, In data sheet 1 i have a list of medical providers that reimburst at 110% or more, each address on that list needs to get 1 letter mailed to them, but i have to keep track of how many are going to each region, i.e. Columbus, OH region, Cincinnati, OH Region, Toledo, OH Region, and Cleveland, OH region. So what i want to do is create a 3rd data sheet that keeps track of total letters sent by region, but was wondering if it was possible for this info to be automatically transfered from data sheet 1 to data sheet 3. I don't need all the information in data sheet 1 to tranfer to data sheet 3. All i need is for data sheet 3 to read off the City field in data sheet 1, and calculate 1 letter sent to that region. I dont even know if this is possible, but it is way beyond my realm of excel knowledge which isn't much.

    Any help would be appreciated. I am trying to attach the spreadsheet, however it isn't allowing me to attach it, i keep getting a database error, when i upload it. It is under the max size limit too. Not sure what's going on.

    Thank you,

    SETH
    Last edited by Sbova0226; 07-06-2009 at 07:49 PM. Reason: fixed Title

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Excel Help. I am lost. 2 issues.

    Welcome to the forum.

    Please take a few minutes to read the forum rules, and then amend your thread title accordingly.

    Thanks.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    07-06-2009
    Location
    Columbus, OH
    MS-Off Ver
    Excel 2003
    Posts
    14

    Re: Excel Help. I am lost. 2 issues.

    Sorry about that. I amended it.

    Thanks,

    Seth

  4. #4
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,607

    Re: Need help removing duplicate addresses, and transferring data from 1 tab to anoth

    Can you upload an example?

    It doesn't have to be real data, write dummy data taht would help better understending problem.

  5. #5
    Registered User
    Join Date
    07-06-2009
    Location
    Columbus, OH
    MS-Off Ver
    Excel 2003
    Posts
    14

    Re: Need help removing duplicate addresses, and transferring data from 1 tab to anoth

    Quote Originally Posted by zbor View Post
    Can you upload an example?

    It doesn't have to be real data, write dummy data taht would help better understending problem.
    Here it is, i think it attached. I just put basic info in sheet 3 because i have no idea really where to start. Sheet 2 should just be left alone, as it is a list of everything under 110%, they will not be getting letters. The info attached is not sensitive.

    Thank you,

    Seth
    Attached Files Attached Files

  6. #6
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Remove Duplicate Addresses

    Issue 1 - put this formula in R2 and copy down the whole dataset:
    =COUNTIF($L$2:L2,L2)

    Then click on DATA > AUTOFILTER, then click on R1 and select 1. Now you only see the first instance of each address. The others are hidden, still there...but hidden.


    ======
    Issue 2, where is Sheet3 supposed to collect the information about how many letters have been sent to each location?
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  7. #7
    Registered User
    Join Date
    07-06-2009
    Location
    Columbus, OH
    MS-Off Ver
    Excel 2003
    Posts
    14

    Re: Remove Duplicate Addresses

    Quote Originally Posted by JBeaucaire View Post
    Issue 1 - put this formula in R2 and copy down the whole dataset:
    =COUNTIF($L$2:L2,L2)

    Then click on DATA > AUTOFILTER, then click on R1 and select 1. Now you only see the first instance of each address. The others are hidden, still there...but hidden.


    ======
    Issue 2, where is Sheet3 supposed to collect the information about how many letters have been sent to each location?
    Thanks! that worked perfectly.

    As far as issue 2 goes, i am not sure exactly how to start it. But, from the one i included, i just wanted all the columbus, oh addresses in sheet 1 to basically count up under the columbus, OH region(A5) in worksheet 3, so if there are 100 columbus, oh addresses in worksheet 1 then the number 100 would automatically appear under the columbus, OH region(A5) in worksheet 3, and the same for Cincinnati, and Cleveland etc. then if i add another columbus address into worksheet 1 the number would automatically go up 1 under columbus in worksheet 3. I hope that makes sense. i dont know if it is possible to do that or not. If you need further clarification i can try to explain it better, just let me know.

    Thanks so much,

    Seth

  8. #8
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Remove Duplicate Addresses

    That's just a COUNTIF() formula, right?

    On the last sheet, change the value in A4 to just say COLUMBUS and put OH in B4. Now a COUNTIF() formula in A5 like so:
    =COUNTIF('< Than 110%'!N:N,A4)

    Repeat for other cities.

  9. #9
    Registered User
    Join Date
    07-06-2009
    Location
    Columbus, OH
    MS-Off Ver
    Excel 2003
    Posts
    14

    Re: Remove Duplicate Addresses

    Quote Originally Posted by JBeaucaire View Post
    That's just a COUNTIF() formula, right?

    On the last sheet, change the value in A4 to just say COLUMBUS and put OH in B4. Now a COUNTIF() formula in A5 like so:
    =COUNTIF('< Than 110%'!N:N,A4)

    Repeat for other cities.
    GENIUS! You have no idea how much you've helped me out! Thank you so much! I greatly appreciate it!

    Seth

  10. #10
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Remove Duplicate Addresses

    Hehe, glad to hear it! Ya'll come back now, hear!?

    If that takes care of your need, be sure to EDIT your original post, click Go Advanced and mark the PREFIX box [SOLVED].


    (Also, use the blue "scales" icon in our posts to leave Reputation Feedback, it is appreciated)

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1