Excel's hidden word proccessing power otherwise known as VBA
Okay time to reach deep down and pull out a miracle. Have you ever wanted to format some text in an excel document? Well with that said anybody who has tried knows that it isn't an easy task. That is unless you happen to do a little VBA code in the background. The problem with Excel, and it's not so much a problem as it is designed that way, is that it doesn't offer much when you need to modify something with a letter or non numeric value in it. This requires you to write some code to perform some good old fashioned string parsing. For those of you who have never worked with VBA don't worry it doesn't bite, it is actually very simple. All of the functions to read, write, and look through your string are built into VBA. With that said let's fire up excel and head into town. The example I am going to demonstrate here is based off of a simple string needing to be turned into a MAC address like format. In this case I like the CISCO xxxx.xxxx.xxxx format since that...