+ Reply to Thread
Results 1 to 11 of 11

check if sentence contains number

  1. #1
    Forum Contributor
    Join Date
    11-17-2015
    Location
    India
    MS-Off Ver
    2013
    Posts
    365

    check if sentence contains number

    hi,

    i have data in column c.

    I want to check if the sentences in c contains minimum three numbers continuously (0-9) without space and any special characters. it has to be clear minimum 3 digits. if it contains 3 digits, i need result in column F as the "sentence has number" Or if it does not contains the number then result should be "JUNK" '

    e.g
    C1 1 RENEWAL;30 OCT 2 F1 JUNK
    C2 1 Renewal=240600/46/14/85dddddd96 2 F2 sentence has number
    C3 1 renewal0 2 jiosaid010286 3 yashwantshah 4 prm.r.s.17967 F3 sentence has number
    C4 1 RENEWAL500000, 2 F4 sentence has number
    C5 1 RenewalDated 28-10-2015 2 F5 JUNK
    C6 1 renewal-phase1 2 F6 JUNK
    C7 1 renewal-yes 2 F7 JUNK
    C8 1 Renual Nirmalaben harshadrai shah. 2 F8 JUNK
    C9 1 renuwal:Nirmalaben Harshadrai shah. 2 F9 JUNK
    C10 1 Renwal 2 F10 JUNK
    C11 1) Floater Policy in name of Mitesh Shah renewed, 2) F11 JUNK
    C12 1) I Renewal PHS ID: NA AMR 22809923 JIO 2) F12 sentence has number
    C13 1) jinesh d shah F13 JUNK
    C14 1) MADHUBEN S ZAVERI AGE : 77 D.O.B 15.11.1938 2) FALGUNI P SHAH AGE:50. D.O.B 09.08.1965 F14 JUNK
    C15 1) MADHUBEN S ZAVERI AGE : 77 D.O.B 15.11.1938 2) FALGUNI P SHAH AGE:50. D.O.B 09.08.1965 UTR NUMBER : KCBL14527000005 F15 sentence has number

  2. #2
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: check if sentence contains number

    Why is C14 equal JUNK if end with 1965 ?
    And C5 has 2015?

    Doesn't that meet the three digit criteria?
    Surround your VBA code with CODE tags e.g.;
    [CODE]your VBA code here[/CODE]
    The # button in the forum editor will apply CODE tags around your selected text.

  3. #3
    Forum Contributor
    Join Date
    11-17-2015
    Location
    India
    MS-Off Ver
    2013
    Posts
    365

    Re: check if sentence contains number

    Hi Alpha,

    Sorry, It is a mistake from my side.
    both should be sentence has number

  4. #4
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: check if sentence contains number

    Try this...

    Please Login or Register  to view this content.

  5. #5
    Forum Contributor
    Join Date
    11-17-2015
    Location
    India
    MS-Off Ver
    2013
    Posts
    365

    Re: check if sentence contains number

    Dear Alpha.

    Please provide provision to change the number of alphabets in code. like in the same code i should be able to change the code to 5 or 7 or any number instaead of 4 number of alphabets.

    Also please provide comment abt the function of the code just for my understanding.
    Thanks

  6. #6
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: check if sentence contains number

    "*###*"
    This is the match pattern. Each # is one digit.

    Highlight the Like keyword in the VBA editor code and press F1 for an explanation. The rest you will have to learn on your own.

  7. #7
    Forum Contributor
    Join Date
    11-17-2015
    Location
    India
    MS-Off Ver
    2013
    Posts
    365

    Re: check if sentence contains number

    wow wow wow... excellent. than =k you so much alpha

  8. #8
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: check if sentence contains number

    UDF

    Use in cell like

    =IF(ContainsNum(C1,3),"Sentence has number",IF(C1="","","JUNK"))

    To a Standard module
    Please Login or Register  to view this content.
    Last edited by jindon; 11-22-2015 at 02:31 AM.

  9. #9
    Forum Contributor
    Join Date
    11-17-2015
    Location
    India
    MS-Off Ver
    2013
    Posts
    365

    Re: check if sentence contains number

    this is also good

  10. #10
    Forum Contributor
    Join Date
    11-17-2015
    Location
    India
    MS-Off Ver
    2013
    Posts
    365

    Re: check if sentence contains number

    understood/ thanks

  11. #11
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229

    Re: check if sentence contains number

    You can do this with formulas


    =IF(SUMPRODUCT(--ISNUMBER(MID(A1, COLUMN($A:$CX),1)+MID(A1, COLUMN($B:$CY),1)+MID(A1, COLUMN($C:$CZ),1)))=0, "JUNK", "sentence has number")
    Last edited by mikerickson; 11-22-2015 at 03:39 AM.
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

+ 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. Why does =if(c7<b2<d7,1,0) not work? A between number sentence....
    By KarinL in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 08-26-2015, 02:53 PM
  2. Convert specific number into specific sentence
    By sarangapani in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-26-2013, 03:57 PM
  3. [SOLVED] Check the same values and delete if same, sort rows in sentence
    By Odeen in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 02-05-2013, 04:02 AM
  4. [SOLVED] Match a data entry sentence with the highest number of common words within a database
    By jasonbwt in forum Excel Programming / VBA / Macros
    Replies: 24
    Last Post: 08-13-2012, 01:17 AM
  5. Extracting a number out of a sentence
    By Geomarsh in forum Excel General
    Replies: 17
    Last Post: 08-12-2009, 09:47 PM
  6. Formatting a number within a sentence
    By aalbers in forum Excel General
    Replies: 4
    Last Post: 06-19-2009, 03:51 PM
  7. Replies: 10
    Last Post: 10-07-2005, 03:05 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