+ Reply to Thread
Results 1 to 15 of 15

Finding Numbers

  1. #1
    Registered User
    Join Date
    11-07-2007
    Posts
    33

    Finding Numbers

    G'day all,

    Could someone point me in the right direction please.
    The formula I have been using to locate 3 numbers from a column is: =IF(ISERROR(MID($A4,COLUMN()-1,1)*1),MID($A4,COLUMN()-1,1),MID($A4,COLUMN()-1,1)*1)

    Previously I only needed to enter 3 numbers into column A and the formula would seperate those numbers into B1,C1 & D1, now I need to enter on average 12 numbers ie:123456789123, the formula I need now is something that will only pick up the last 3 numbers on the right ie: 1,2,3.
    As you may be able to tell from the formula above it will only pick up the numbers on the left, where am I going wrong lol.

    Any help in relation to this problem is much appreciated & I thank you in advance!

    Regards,
    NB
    Last edited by NextByte; 09-21-2008 at 09:56 PM.

  2. #2
    Valued Forum Contributor
    Join Date
    08-26-2008
    Location
    singapore
    Posts
    626
    I have tried your formula, it works well
    I copy and paste the formula from b1 until m1, then there are the 12 separated numbers.
    I think it's correct
    and I have a simpler formula for you.

    =MID($A$4,COLUMN()-1,1)
    I need your support to add reputations if my solution works.


  3. #3
    Registered User
    Join Date
    11-07-2007
    Posts
    33
    Thanks for reply SG,

    Still not working or not working how I need it to,
    try this:
    B1 to J1 & insert the formula =MID($A$1,COLUMN()-1,1)
    B2 to J2 & insert the formula =MID($A$2,COLUMN()-1,1)

    Now in A1 type 123156665
    Now in A2 type 5312

    The result will show the numbers from B1-J1 (thats fine)
    on the 2nd line it will only show the numbers from B2-E2 when in actual fact I would need them on the other side of the page in cells G2-J2

    Its the last 3 digits I need on the right hand side

    Does this make sense?

    Regards,
    NB
    Last edited by NextByte; 09-22-2008 at 01:50 AM.

  4. #4
    Registered User
    Join Date
    09-25-2007
    Posts
    21
    HI There,

    Try this =MID($A1,COLUMN()-1,1)
    You need to emone "$" sign to row.
    Thanks & Regards
    Sandeep...

    INDIA

  5. #5
    Registered User
    Join Date
    11-07-2007
    Posts
    33
    Thanks Sandeep,
    That doesnt work either, no matter how many numbers I type in, I need the numbers on the right to show first.

    Does this help?

    Thanks,
    NB
    Attached Files Attached Files
    Last edited by NextByte; 09-22-2008 at 02:03 AM.

  6. #6
    Valued Forum Contributor rwgrietveld's Avatar
    Join Date
    09-02-2008
    Location
    Netherlands
    MS-Off Ver
    XL 2007 / XL 2010
    Posts
    1,671

    re: Finding Numbers

    Start at J2 and copy this formula: =MID($A$2;11-COLUMN();1)
    Copy left till B2
    For readability: =MID($A$2;COLUMN($K$2)-COLUMN();1)
    Copy left till B2
    Looking for great solutions but hate waiting?
    Seach this Forum through Google

    www.Google.com
    (e.g. +multiple +IF site:excelforum.com/excel-general/ )

    www.Google.com
    (e.g. +fill +combobox site:excelforum.com/excel-programming/ )

    Ave,
    Ricardo

  7. #7
    Registered User
    Join Date
    11-07-2007
    Posts
    33
    Thanks for reply rwgrietveld
    Tried it, nothing seemed to happen, all it did was insert the same formula =MID($A$2;COLUMN($K$2)-COLUMN();1) from J2:B2

    Perhaps I am doing wrong
    Last edited by NextByte; 09-22-2008 at 02:17 AM.

  8. #8
    Valued Forum Contributor rwgrietveld's Avatar
    Join Date
    09-02-2008
    Location
    Netherlands
    MS-Off Ver
    XL 2007 / XL 2010
    Posts
    1,671

    re: Finding Numbers

    make sure B2:J2 have this formula (all the same)=MID($A2;COLUMN($K2)-COLUMN();1) and A2 is the number e.g. 5532 or 123456789012

  9. #9
    Registered User
    Join Date
    11-07-2007
    Posts
    33
    Thanks for reply RW,
    I tried inserting that formula and all it does is shown in the example, no matter what I do whenever I insert the formula it seems to be non interactive.

    Regards,
    NB
    Attached Files Attached Files
    Last edited by NextByte; 09-22-2008 at 05:44 AM.

  10. #10
    Registered User
    Join Date
    11-07-2007
    Posts
    33
    Cant get this working =MID($A2;COLUMN($K2)-COLUMN();1)
    Any thoughts?

    Cheers!

  11. #11
    Valued Forum Contributor ratcat's Avatar
    Join Date
    03-07-2008
    Location
    Rural NSW, Australia
    MS-Off Ver
    Vista 2007
    Posts
    1,111
    G'day All,

    What is happening is international help. Which is great !! but......

    In some countries the comma is used and the other countries use the semi comma.

    In Australia we use the comma to separate the formula functions.

    Try this


    Please Login or Register  to view this content.

    Not this


    Please Login or Register  to view this content.

    HTH
    Have I made you happy ??? If yes, please make me happy by pressing the http://www.excelforum.com/images/buttons/reputation-40b.png Add Reputation button in my post.
    Please don't forget to do the same to other contributors of this forum.

    Thanks
    I don't void confusion, I create it

  12. #12
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320
    semi-comma old chap? semi-colon i think

  13. #13
    Valued Forum Contributor ratcat's Avatar
    Join Date
    03-07-2008
    Location
    Rural NSW, Australia
    MS-Off Ver
    Vista 2007
    Posts
    1,111
    Quote Originally Posted by martindwilson View Post
    semi-comma old chap? semi-colon i think
    LMAO I think your right

    Those fingers not listening to the brain again. lol

  14. #14
    Registered User
    Join Date
    11-07-2007
    Posts
    33
    G'day there RatCat,

    Thanks for showing the way mate, was banging my head against the wall wondering why it wouldn't work, Big thanks to rwgrietveld, it more or less does the job mate, don't want to take up any more time, much appreciated friend.

    Good to see more Aussie's on this site RatCat, just west of Wagga here.

    Regards,
    NB
    Last edited by NextByte; 09-22-2008 at 04:46 PM.

  15. #15
    Valued Forum Contributor ratcat's Avatar
    Join Date
    03-07-2008
    Location
    Rural NSW, Australia
    MS-Off Ver
    Vista 2007
    Posts
    1,111
    G'day everybody,

    Just thinking the other day, if your still stuck try the following

    B1 =MID(RIGHT(A1,3),1,1)

    C1 =MID(RIGHT(A1,3),2,1)

    D1 =MID(RIGHT(A1,3),3,1)

    HTH


+ 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. Finding missing numbers
    By BrettLowers in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 01-25-2008, 03:08 PM
  2. Finding highest and lowest number between to key numbers
    By garbs in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-10-2007, 06:35 PM
  3. finding "like" part numbers
    By leapyleigh in forum Excel General
    Replies: 5
    Last Post: 09-02-2007, 02:43 PM
  4. Finding numbers which are in 2 columns, not just one
    By marknorton in forum Excel General
    Replies: 2
    Last Post: 03-31-2007, 03:17 PM
  5. Finding the missing numbers
    By debra in forum Excel General
    Replies: 5
    Last Post: 11-14-2006, 11:47 PM

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