Help Keep Track of Duplicate IP's with Excel - eBay Suspended & PayPal Limited Forums
eBay Suspension & PayPal Limited Forums  
Join Today
Register Subscribe
     

Registration is fast, simple and absolutely free so please, join our community today!


Go Back   Home > Stealth Topics > IP Address

IP Address Changing your IP address, multiple IPs, VPNs, hiding your IP, phone tethering, MiFi devices, hotspots and more.

Reply
 
Thread Tools
  #1  
Old 05-25-2011
Junior Member
 
Join Date: Feb 2011
Posts: 35
Thanks: 11
Thanked 8 Times in 4 Posts
Activity: 0%
Longevity: 79%
iTrader: (0)
Lightbulb Help Keep Track of Duplicate IP's with Excel

I was looking for a way to manage my IP's and to make sure I don't use the same one on accident. I keep my IP's in an excel spreadsheet, but over time this IP list can become very long and hard to track. It is possible to use CTRL + F to search for the IP but I found a more effective way.

How to Highlight, Remove or Delete Duplicate Cells in Excel 2007?

To use this method, just make sure you select the ENTIRE column (i.e. click on the column letter at the top it will highlight everything) then apply the conditional formatting. This way everytime you add a new IP in the rows in that specific column, it will automatically work.

Here is a screenshot of the method working on my excel sheet.



Good luck!
Reply With Quote
The Following 3 Users Say Thank You to Ratman2050 For This Useful Post:
NotAHappyBunny (05-28-2011), OfficialGenius (05-30-2011), ShadyOne (05-25-2011)
The complete step-by-step guide to get back to selling today!

  #2  
Old 05-25-2011
Senior Member
 
Join Date: Mar 2011
Posts: 4,729
Thanks: 442
Thanked 914 Times in 720 Posts
Activity: 0%
Longevity: 78%
iTrader: (1)
Default

Tried that - have you missed a bit off the end?
Reply With Quote
  #3  
Old 05-25-2011
Junior Member
Threadstarter  
 
Join Date: Feb 2011
Posts: 35
Thanks: 11
Thanked 8 Times in 4 Posts
Activity: 0%
Longevity: 79%
iTrader: (0)
Default

Quote:
Originally Posted by grannytranny View Post
Tried that - have you missed a bit off the end?
Missed a bit of what off the end?
Reply With Quote
  #4  
Old 05-25-2011
Senior Member
 
Join Date: Mar 2011
Posts: 4,729
Thanks: 442
Thanked 914 Times in 720 Posts
Activity: 0%
Longevity: 78%
iTrader: (1)
Default

LOL - I opened my XL - Did what you said (conditional formatting) - then I don't see what I have to put in after that.

(Please bear in mind I'm blonde and thick!!)
Reply With Quote
  #5  
Old 05-25-2011
rsot's Avatar
Executive [VIP]
 
Join Date: Dec 2009
Posts: 80,763
Thanks: 6,371
Thanked 9,420 Times in 8,694 Posts
Activity: 92%
Longevity: 85%
iTrader: (7)
Default

@GTran - what you implying there? or better...what you drinking there?
Reply With Quote
  #6  
Old 05-25-2011
Senior Member
 
Join Date: Mar 2011
Posts: 4,729
Thanks: 442
Thanked 914 Times in 720 Posts
Activity: 0%
Longevity: 78%
iTrader: (1)
Default

Just my normal tipple hon - wine with dinner and vodka and tonic after (He's snoring on the settee and I've got to wake him to put the chickens away in 20 minutes - I need a drink) LOL:D
Reply With Quote
  #7  
Old 05-25-2011
Junior Member
Threadstarter  
 
Join Date: Feb 2011
Posts: 35
Thanks: 11
Thanked 8 Times in 4 Posts
Activity: 0%
Longevity: 79%
iTrader: (0)
Default

Quote:
Originally Posted by grannytranny View Post
LOL - I opened my XL - Did what you said (conditional formatting) - then I don't see what I have to put in after that.

(Please bear in mind I'm blonde and thick!!)
If you highlighted the entire column you add IP's on like I do, and then applied the conditional formatting, then you are done.

Next time you add another IP address and it is a duplicate of one already written in your excel sheet, then it will highlight both and you will know that you are logging into the same IP as before.
Reply With Quote
The Following User Says Thank You to Ratman2050 For This Useful Post:
GrannyT (05-26-2011)
  #8  
Old 05-25-2011
ShadyOne's Avatar
Senior Member
 
Join Date: Apr 2011
Posts: 2,556
Thanks: 186
Thanked 327 Times in 281 Posts
Activity: 0%
Longevity: 78%
iTrader: (0)
Send a message via MSN to ShadyOne
Default

Yeah it is a great feature.

I am sure this will help many people who are not aware of it
__________________
"Guess whos back, back again
Shady's back, tell a friend
"
Reply With Quote
  #9  
Old 05-25-2011
Junior Member
Threadstarter  
 
Join Date: Feb 2011
Posts: 35
Thanks: 11
Thanked 8 Times in 4 Posts
Activity: 0%
Longevity: 79%
iTrader: (0)
Lightbulb Improved method check it out!!

I couldn't edit the original thread so I'm gonna put this here.

The highlighting feature above depends on how you sort out your IP's. I did some research and finally found a method that works extremely well (for my method of excel sorting). The way I sort my IP's can be seen here:



As you can see, Test 1 and Test 2 are where your ebay account usernames would go. Below them is the IP you use to login with them. Now, I use one phone to tether and give me IP's to logon multiple accounts. Before I login to eBay I ALWAYS go to IPBurger.com and check my IP, then copy and paste it to excel. Say I logon "Test 2" and write down the IP (in this case it is 199.99.0.0) and then I want to know if I entered in that same IP somewhere before in "Test 1's" column. How do I do that?

You run something called a MACRO. Here is what you need to do:

Copy the code below:

Code:
Sub HighlightDups()
Dim i, LastRowA, LastRowB
LastRowA = Range("A" & Rows.Count).End(xlUp).Row
LastRowB = Range("B" & Rows.Count).End(xlUp).Row
Columns("A:A").Interior.ColorIndex = xlNone
Columns("B:B").Interior.ColorIndex = xlNone
For i = 1 To LastRowA
If Application.CountIf(Range("B:B"), Cells(i, "A")) > 0 Then
Cells(i, "A").Interior.ColorIndex = 36
End If
Next
For i = 1 To LastRowB
If Application.CountIf(Range("A:A"), Cells(i, "B")) > 0 Then
Cells(i, "B").Interior.ColorIndex = 36
End If
Next
End Sub
Then
Quote:
Press ALT + F11 in Excel.

Select INSERT > MODULE

Paste the macro into the editing area to the right.

Close the VBE and return to the worksheet.

Press ALT + F8 in excel.

When the Macros window opens, highlight this macro and click 'Options..'.

Enter a letter to be used as a keyboard shortcut and click 'OK'.

Close the Macros window.

To identify duplicates, press CTRL + your shortcut letter.

Note: If you prefer a different highlight color, change the '36' in both places in the macro to a different number.
I'm still working on a way to find how to use this method for example if you have 2 or more ebay accounts as this only works for 2 columns. One solution to this is using the same macro code above, but replacing the columns "A" and "B" with for ex. "C" and "D" and so on and then creating a new shortcut.

Hope it helps.

Source: Highlighting duplicate cells in two columns Excel 2007? - Yahoo! Answers
Reply With Quote
The Following 3 Users Say Thank You to Ratman2050 For This Useful Post:
GrannyT (05-26-2011), jbluntz (05-25-2011), OfficialGenius (05-30-2011)
  #10  
Old 05-28-2011
NotAHappyBunny's Avatar
Senior Member
 
Join Date: May 2011
Posts: 466
Thanks: 211
Thanked 44 Times in 37 Posts
Activity: 0%
Longevity: 77%
iTrader: (0)
Default

hi

thanks for that useful tip.

The code is very easy to modify to allow many columns to be compared.
Here is an example of columns B, C & D being compared. Just copy & paste this code into the Visual Basic Macro Editor in Excel.
Go to top toolbar menu (at the top of the screen) & select Tools > Macro > Visual Basic Editor
A new window will open.
Select View > Code from the toolbar menu (at the top of the screen).
Just paste the code from below.

You may need to adapt it slightly to customise it to compare your desired columns. If this is the case, simply replace the column letters with your own in the code (e.g This example shows the columns B, C & D being compared).

In the same Visual Basic Window > Save the macro.

You can easily make a button to execute this code whenever you paste a new ip entry into the spreadsheet.

Right-Click on the top toolbar in your spreadsheet > select Customise.

A small window opens choose the tab "Commands" and scroll down until you find "Macro". You should see a yellow smiley face icon - select it and drag it to your top toolbar.
Click the button in the same window "Modify Selection" > click assign macro and select your recently saved macro.

Close the window, save and press the new button - your duplicate entries will be highlighted.

Paste the following code into the visual basic code editor.

Sub HighlightDups()

Dim i, LastRowB, LastRowC, LastRowD

LastRowB = Range("B" & Rows.Count).End(xlUp).Row
LastRowC = Range("C" & Rows.Count).End(xlUp).Row
LastRowD = Range("D" & Rows.Count).End(xlUp).Row

Columns("B:B").Interior.ColorIndex = xlNone
Columns("C:C").Interior.ColorIndex = xlNone
Columns("D:D").Interior.ColorIndex = xlNone

For i = 1 To LastRowB
If Application.CountIf(Range("C:C"), Cells(i, "B")) > 0 Then
Cells(i, "B").Interior.ColorIndex = 36
If Application.CountIf(Range("D:D"), Cells(i, "B")) > 0 Then
Cells(i, "B").Interior.ColorIndex = 36
End If
End If
Next

For i = 1 To LastRowC
If Application.CountIf(Range("B:B"), Cells(i, "C")) > 0 Then
Cells(i, "C").Interior.ColorIndex = 36
If Application.CountIf(Range("D:D"), Cells(i, "C")) > 0 Then
Cells(i, "C").Interior.ColorIndex = 36
End If
End If
Next

For i = 1 To LastRowD
If Application.CountIf(Range("B:B"), Cells(i, "D")) > 0 Then
Cells(i, "D").Interior.ColorIndex = 36
If Application.CountIf(Range("C:C"), Cells(i, "D")) > 0 Then
Cells(i, "D").Interior.ColorIndex = 36
End If
End If
Next
End Sub


I know it looks complicated but it should only take you 10-30 minutes depending on experience, and it will save you lots of time & eliminate the risk of duplicate ip's.




ps

the grins in the column D should be replaced with the same format as colums B & C. I.E ("C:C")

Last edited by NotAHappyBunny; 05-28-2011 at 08:19 PM.
Reply With Quote
The Following 2 Users Say Thank You to NotAHappyBunny For This Useful Post:
Ratman2050 (05-29-2011), ShadyOne (05-29-2011)
  #11  
Old 05-28-2011
ShadyOne's Avatar
Senior Member
 
Join Date: Apr 2011
Posts: 2,556
Thanks: 186
Thanked 327 Times in 281 Posts
Activity: 0%
Longevity: 78%
iTrader: (0)
Send a message via MSN to ShadyOne
Default

^ Seems like a lot of effort lol

What does it actually do more than the OP's first post?
__________________
"Guess whos back, back again
Shady's back, tell a friend
"
Reply With Quote
  #12  
Old 05-29-2011
NotAHappyBunny's Avatar
Senior Member
 
Join Date: May 2011
Posts: 466
Thanks: 211
Thanked 44 Times in 37 Posts
Activity: 0%
Longevity: 77%
iTrader: (0)
Default

it compares 5 columns of data, all i did was copy & paste a few lines of the original code & adapt to to look at my desired columns.

Each stealth will require one column so unless you only have 2 acc's - the op stated that they were trying to figure out a way to do it with multiple columns (more than 2) .

I prefer buttons to keyboard shortcuts - plus the smiley face reminds me to do it
Reply With Quote
  #13  
Old 05-29-2011
ShadyOne's Avatar
Senior Member
 
Join Date: Apr 2011
Posts: 2,556
Thanks: 186
Thanked 327 Times in 281 Posts
Activity: 0%
Longevity: 78%
iTrader: (0)
Send a message via MSN to ShadyOne
Default

^ Oh yeah, I see. Thanks.
__________________
"Guess whos back, back again
Shady's back, tell a friend
"
Reply With Quote
Reply




Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Spreadsheet To Keep Track of Accounts, IP's, .... tle848 Subscriber Discussions 6 02-14-2011 07:07 PM
Excel search SaiJin Subscriber Discussions 3 11-05-2010 01:28 PM
Microsoft Excel Formula Killed by Ebay Everything Else 8 07-22-2010 05:16 PM
Tracking Multiple Accounts with Excel - How do you do it? Junkymail Multiple eBay & PayPal Accounts 32 01-03-2010 11:44 AM
eBay UK ban duplicate BIN listings SuperSurfer eBay Discussion! 1 12-12-2008 10:34 AM


All times are GMT -5. The time now is 01:04 AM.


Stop the guessing games and learn how you can quickly and easily get back on eBay today!
Read the best selling step-by-step eBay Suspension guide eBay Stealth!
Rotating Residential Proxies? Head to IPBurger for Residential Proxies
vBulletin® Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Ad Management by RedTyger
no new posts