+ Reply to Thread
Results 1 to 44 of 44

Need to break a text/number sequence and insert :

  1. #1
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Need to break a text/number sequence and insert :

    Anyone know of a quick (formula) way to take an entry like...
    0040580D007A

    and insert colons after every 2 chars?
    00:40:58:0D:00:7A

    I know I could use LEFT/MID/RIGHT etc, but cant think of another way right niow
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    You might be able to do it quickly in PowerQuery.

    M code:
    Please Login or Register  to view this content.
    Attached Files Attached Files
    Last edited by AliGW; 02-15-2018 at 03:14 AM.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    Ali, thanks for the suggestions

    It's for something my wife has to do at work, they dont have that feature, and she is not that advanced in excel anyway. Macros are kinda out as well

    She has 2 files, 1 with the IP of all the clock/punch machines in the facility, along with their locations (they contain the colons), and another file that contains what clock people punched in on, these dont contain the columns and actually have some extraneous trailing data that needs to be removed. She gets a new copy of the 2nd file every day, and need to ID those ppl that did not punch in on the correct clock

    What Im trying to get for her, is some formula that she can paste into the 2nd file, copy it down, and it will then show what she needs.

    I will be using a simple vlookup into the 1st file, and as I said, I could brute-force a LEFT/MID/RIGHT to insert colons, but Im sure there is a simpler, more elegant option

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    Mmmm. Not as easy as it should be, is it? I can't think of a way in a simple formula, unless you use the REPT function. Alkey will be your man for this!

  5. #5
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    Yes, exactly lol. I know I can do it, but it will be messy

  6. #6
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    OK this is the mess I came up with so far...
    =VLOOKUP(LEFT(AD18,2)&":"&MID(AD18,3,2)&":"&MID(AD18,5,2)&":"&MID(AD18,7,2)&":"&MID(AD18,9,2)&":"&MID(AD18,11,2),'[file-name-removed-to-protect-the-innocent,xlsx]sheet1'!$B$5:$C$93,2,0)

    AD18=0040580D007A (134325)
    I convert to this...
    00:40:58:0D:00:7A
    LEFT(AD18,2)&":"&MID(AD18,3,2)&":"&MID(AD18,5,2)&":"&MID(AD18,7,2)&":"&MID(AD18,9,2)&":"&MID(AD18,11,2)

    ...yucky

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    On a side note, I have committed the same error in posting this, as many other OP's do - not giving enough detail or background on what I need and why I need it a certain way

    ...Hey guys, convert 0040580D007A to 00:40:58:0D:00:7A for me please...
    lol

  8. #8
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    I did think that, Ford, but didn't dare say so ...

    Been there, done that!

  9. #9
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    What about a blank cell to the right. Then this formula that progressively concatenates to the right. In C1 and across.
    Formula: copy to clipboard
    Please Login or Register  to view this content.



    A
    B
    C
    D
    E
    F
    G
    H
    1
    0040580D007A
    00:
    00:40:
    00:40:58:
    00:40:58:0D:
    00:40:58:0D:00:
    00:40:58:0D:00:7A
    Dave

  10. #10
    Forum Expert shukla.ankur281190's Avatar
    Join Date
    05-17-2014
    Location
    Lucknow, India
    MS-Off Ver
    Office 365
    Posts
    3,937

    Re: Need to break a text/number sequence and insert :

    Mr.Ford

    I have a solution too but with helper column.

    C2=IFERROR(INDEX(MID($A2,ROW(INDIRECT("1:"&LEN($A2))),2)&":",(COLUMNS($C$2:C2)-1)*2+1),"")


    Copy towards the cells.

    B2=SUBSTITUTE(C2&D2&E2&F2&G2&H2&I2,":","",LEN(C2&D2&E2&F2&G2&H2&I2)-LEN(SUBSTITUTE(C2&D2&E2&F2&G2&H2&I2,":","")))


    Row\Col
    A
    B
    C
    D
    E
    F
    G
    H
    I
    1
    Data Result Helper Column Helper Column Helper Column Helper Column Helper Column Helper Column Helper Column
    2
    0040580D007A 00:40:58:0D:00:7A 00: 40: 58: 0D: 00: 7A:
    If I helped, Don't forget to add reputation (click on the little star ★ at bottom of this post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)

  11. #11
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    Dave, thanks for that, and yes, that would be an option, and I have also used that approach before, too

    However, Im trying to keep this as simple as I can, with as few steps as possible

  12. #12
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    shukla.ankur281190 thanks a ton for the suggestion, but the same comments apply as was given to Dave

  13. #13
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    Then there is always brute force. (Scuri won't let me play without spaces in the formula. )

    =REP LACE(REP LACE(REP LACE(REP LACE(REP LACE(A2,11,0,":"),9,0,":"),7,0,":"),5,0,":"),3,0,":")

  14. #14
    Forum Expert shukla.ankur281190's Avatar
    Join Date
    05-17-2014
    Location
    Lucknow, India
    MS-Off Ver
    Office 365
    Posts
    3,937

    Re: Need to break a text/number sequence and insert :

    Woww Flame love this replace formula simply just woww. Hats-off Dave

  15. #15
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    Quote Originally Posted by FlameRetired View Post
    Then there is always brute force. (Scuri won't let me play without spaces in the formula. )

    =REP LACE(REP LACE(REP LACE(REP LACE(REP LACE(A2,11,0,":"),9,0,":"),7,0,":"),5,0,":"),3,0,":")
    Thats shorter than my LEFT/MID version, thanks

  16. #16
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    Ford I just tried Flash fill and it seems to work well.

  17. #17
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    testing no spaces
    ...
    OK didnt work for me eitrher

  18. #18
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    Quote Originally Posted by FlameRetired View Post
    Ford I just tried Flash fill and it seems to work well.
    enlighten me please?
    (my excuse, it's late and my bed is calling...3:05 am)

  19. #19
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    Using the zero value never occurred to me - brilliant, Dave!!!

  20. #20
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    There isnt always a zero to latch onto in each couple.
    Re-looking at her locations, the 1st 3 couples (6 values) are all the same, the 1st 4 all start with 0, but after that, looks like it can vary
    00:40:58:0D:03:82
    00:40:58:0C:E8:EB
    00:40:58:0C:FF:2C
    00:40:58:OC:FF:27
    00:40:58:0C:E8:EC
    00:40:58:0C:E8:01
    00:40:58:0C:E8:24

  21. #21
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    Just type a single example of desired output in B1. Then DATA > Flash Fill

    Scuri won't let me post the Grid shot. I'll try an upload if this doesn't post.

  22. #22
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    oh ok DUH lol

    Another wrinkle is the trailing junk
    0040580CEE5B (134327)
    0040580CEE5B (134327)
    0040580D142E (134318)
    0040580D142E (134318)
    0040580CE801 (134305)
    0040580CE9E3 (134315)
    0040580CE9E3 (134315)
    0040580D1200 (134310)
    0040580CE8EB (134301)
    0040580CEE5B (134327)
    0040580CEE5B (134327)
    but that's manageable, too

  23. #23
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    Quote Originally Posted by FDibbins View Post
    There isnt always a zero to latch onto in each couple.
    Re-looking at her locations, the 1st 3 couples (6 values) are all the same, the 1st 4 all start with 0, but after that, looks like it can vary
    00:40:58:0D:03:82
    00:40:58:0C:E8:EB
    00:40:58:0C:FF:2C
    00:40:58:OC:FF:27
    00:40:58:0C:E8:EC
    00:40:58:0C:E8:01
    00:40:58:0C:E8:24
    I don't understand what you mean.

    Anyway here's the upload to prove I might actually not be crazy. (Scuri ... Grrr!)

  24. #24
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    Sorry, post 20 was showing what the location IP's looked like (what she needs to search though) - file 1
    post 22 was what her daily data looks like - she needs to search file 1 to find these entries - file 2

  25. #25
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    I can hear my pillow calling my name. I will pick this up again tomorrow (later today)

    Thanks again to all who have offered suggestions

  26. #26
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    Sweet dreams, Ford!

  27. #27
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    Sleep tight. I'm on my way, too.

  28. #28
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    Ford you mentioned what your wife does not have access to PowerQuery so I am guessing this is out of reach as well (Office 365 subscription).

    =TEXTJOIN(":",TRUE,MID(A1,{1,3,5,7,9,11},2))

    I don't have 365 so I can't test. I also don't know if it has to be array entered. It seemed worth mentioning just in case.

  29. #29
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    Just tried it, Dave, and it does work perfectly - no need for CSE.

  30. #30
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    Dave, you are correct

    She works for the state (PA), and they are very fussy about that sort of thing. (I worked there too, until Dec last year, had to quit because things became untenable)

    Just FYI for other members, TEXTJOIN (among a few others) is also not available in 2016 desktop
    Last edited by FDibbins; 02-16-2018 at 03:31 AM.

  31. #31
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    Quote Originally Posted by AliGW View Post
    Just tried it, Dave, and it does work perfectly - no need for CSE.
    Thank you for that Ali. I occasionally suggest TEXTJOIN in posts. It's good to know about CSE for certain now.

  32. #32
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    On a side note, I said these where IP addy's, they are actually MAC addys

  33. #33
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    It's a shame - there are a few really handy functions that only exist in 365.

  34. #34
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    Quote Originally Posted by AliGW View Post
    It's a shame - there are a few really handy functions that only exist in 365.
    Agreed, I think some are also available for MAC, and (maybe) office pro

  35. #35
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    Quote Originally Posted by FDibbins View Post
    Just FYI for other members, TEXTJOIN (among a few others) is also not available in 2016 desktop
    Just to be VERY clear: it DOES exist in 2016 desktop IF you have a 365 subscription!!! In other words, it's not just available in the browser version.

  36. #36
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    Ford that's too bad. It was a long shot that sounded like the perfect solution.

    Meanwhile I kept busy "googling" file formats and looking for some hidden little known setting in HEX2DEC/DEC2HEX or better yet some TEXT string format that is not commonly reported like the R1C1 string "R0C00000". The information is overwhelming. None of it usable. (Whoever heard of Delta V time format?).

  37. #37
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    Delta V time format - the Vogons, maybe???

  38. #38
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Need to break a text/number sequence and insert :

    or Vulcans?

  39. #39
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    It's probably the Vogons' poetic version of iambic pentameter.

  40. #40
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    About the SKU differences in 2016: That one really *@#0's me off. It's one thing to not include features like Power Pivot ... I understand that ... but to withhold FUNCTIONS is inexcusable. It will be interesting to see what happens in the 2019/2022 versions.

  41. #41
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    Quote Originally Posted by AliGW View Post
    Delta V time format - the Vogons, maybe???
    Quote Originally Posted by FDibbins View Post
    or Vulcans?
    Quote Originally Posted by AliGW View Post
    It's probably the Vogons' poetic version of iambic pentameter.
    Delta V rocket time?

    iambic pentameter ... I like it. With or without couplets?

  42. #42
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    Dave - surely you realise that it must have quintuplets?

  43. #43
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Need to break a text/number sequence and insert :

    HA! Good one! Deserves rep.

  44. #44
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,968

    Re: Need to break a text/number sequence and insert :

    Thanks, Dave - very kind!!! Love a bit of wordplay - after all, words are my day job.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Find row number above specific row, then insert page break
    By mvparker79 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 03-31-2017, 01:40 PM
  2. How to insert rows in sheet1 based on sequence number.
    By aleanboy in forum Excel Programming / VBA / Macros
    Replies: 16
    Last Post: 10-16-2014, 12:35 PM
  3. [SOLVED] Insert columns where there is a break in sequence
    By theletterh in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-03-2014, 05:23 PM
  4. Insert a blank row if number sequence is not complete.
    By califorlina in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-11-2013, 08:59 AM
  5. Insert Row where break in sequence, Copy data
    By crownent in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-02-2012, 12:49 PM
  6. [SOLVED] Insert missing rows into repeating number sequence
    By budgie300 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 09-12-2012, 06:17 PM
  7. Replies: 2
    Last Post: 11-29-2011, 06:26 AM

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