Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: No. separation

  1. #1
    Senior Member
    Join Date
    Mar 2013
    Posts
    146
    Rep Power
    0

    No. separation

    I want to separate the number in the model, such as Shit
    From right to left
    I wish the solution by the formula
    I am using Office 2003
    Attached Files Attached Files

  2. #2
    Member p45cal's Avatar
    Join Date
    Oct 2013
    Posts
    94
    Rep Power
    12
    Spreadsheet Formulas
    Cell Formula
    C3 =MID($A3,8,1)
    D3 =MID($A3,7,1)
    E3 =MID($A3,6,1)
    F3 =MID($A3,5,1)
    G3 =MID($A3,4,1)
    H3 =MID($A3,3,1)
    I3 =MID($A3,2,1)
    J3 =MID($A3,1,1)

    then copy/drag down.

  3. #3
    Senior Member
    Join Date
    Mar 2013
    Posts
    146
    Rep Power
    0
    Unfortunately, this is not required
    This version of Genius (Mr. Rick Rothstein)
    =SUBSTITUTE(MID(TRIM($A$3);COLUMNS($B10:B10);1);" ";" ")
    But I want this formula divides the numbers from right to left
    Last edited by mahmoud-lee; 02-27-2014 at 06:17 PM.

  4. #4
    Member
    Join Date
    Jul 2012
    Posts
    55
    Rep Power
    13
    Why the first 2 numbers are reversed and the third one is not reversed. What is the rule?

  5. #5
    Member p45cal's Avatar
    Join Date
    Oct 2013
    Posts
    94
    Rep Power
    12
    Quote Originally Posted by mahmoud-lee View Post
    Unfortunately, this is not required
    ??!!
    Quote Originally Posted by mahmoud-lee View Post
    But I want this formula divides the numbers from right to left
    Yes, they give you exactly the same results as on your example workbook (except for Ingolf's observation in msg#4). See attached.
    Attached Files Attached Files
    Last edited by p45cal; 02-27-2014 at 06:37 PM.

  6. #6
    Senior Member
    Join Date
    Mar 2013
    Posts
    146
    Rep Power
    0
    Because the total number consisting of 8 digits
    These two digits only

  7. #7
    Member
    Join Date
    Jul 2012
    Posts
    55
    Rep Power
    13
    OK

    Put this formula in C3

    =MID($A3,11-COLUMN(),1) then drag to the right and down.

  8. #8
    Senior Member
    Join Date
    Mar 2013
    Posts
    146
    Rep Power
    0
    The same problem
    The problem appears when the number is equal to two digits
    Thank you very much
    Excellent thinking
    Sorry,for the effort

  9. #9
    Administrator Admin's Avatar
    Join Date
    Mar 2011
    Posts
    1,123
    Rep Power
    10
    Hi

    In C3 and copied down & across,

    =IF(LEN($A3)=2,MID(REPT("-",$C$1-LEN($A3))&$A3,COLUMNS($C3:C3),1),MID($A3&REPT("-",$C$1-LEN($A3)),$C$1-COLUMNS($C3:C3)+1,1))
    Cheers !

    Excel Range to BBCode Table
    Use Social Networking Tools If You Like the Answers !

    Message to Cross Posters

    @ Home - Office 2010/2013/2016 on Win 10 (64 bit); @ Work - Office 2016 on Win 10 (64 bit)

  10. #10
    Member
    Join Date
    Jul 2012
    Posts
    55
    Rep Power
    13
    Quote Originally Posted by mahmoud-lee View Post
    The same problem
    The problem appears when the number is equal to two digits
    Thank you very much
    Excellent thinking
    Sorry,for the effort

    I do not know what you want ...

    @Admin
    In your formula this part REPT("-",$C$1-LEN($A3)) will be always #value cause this $C$1-LEN($A3) will be a negative number.

Similar Threads

  1. Excel Number Format: Indian Style Comma Separation
    By Rick Rothstein in forum Rick Rothstein's Corner
    Replies: 6
    Last Post: 09-18-2013, 11:38 AM
  2. Follow-up to "Excel Number Format: Indian Style Comma Separation"
    By Rick Rothstein in forum Rick Rothstein's Corner
    Replies: 2
    Last Post: 04-14-2012, 10:46 PM

Posting Permissions

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