abhishekdwivedi02
New Member
- Joined
- Apr 18, 2014
- Messages
- 3
Hi Using VBAcode, I want to filter data code which contains public IP Address and copy the filtered data to other sheet. Column contains both string and number. Please see example:-
<tbody>
</tbody>
In above table (second column) the URL address after http:// can start with string or can start with number. If it is starting with numbers the I need to check whether the address is public is Private or public. In second column http://192.168.44.29, http://172.25.5.107/is Private IP so I need to ignore it but http://95.138.166.181 is public IP and we need to copy to other sheet.
ABC | http://192.168.44.29:2967 | DENIED |
BCD | https://d31qbv1cthcecs. atrk.js | DENIED |
CDE | http://172.25.5.107/ | DENIED |
EFG | http://95.138.166.181/top-links.gif | Accepted |
FGH | http://content.mail5.spopessentials5.com/ | Accepted |
<tbody>
</tbody>
In above table (second column) the URL address after http:// can start with string or can start with number. If it is starting with numbers the I need to check whether the address is public is Private or public. In second column http://192.168.44.29, http://172.25.5.107/is Private IP so I need to ignore it but http://95.138.166.181 is public IP and we need to copy to other sheet.