+ Reply to Thread
Results 1 to 17 of 17

pour words ending with CRITERIA

  1. #1
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    pour words ending with CRITERIA

    look at results on j1 downwards

    i need something like what AZUMI has done on g1 downward , Array formula ,which does keyword search

    Look up based on column A

    Find file Attached
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,925

    Re: pour words ending with CRITERIA

    You have an answer so what is different to results in G ????
    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

  3. #3
    Forum Expert
    Join Date
    09-07-2014
    Location
    Israel
    MS-Off Ver
    office 365
    Posts
    3,187

    Re: pour words ending with CRITERIA

    Hi,
    you want all the words that end with NET?

  4. #4
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,925

    Re: pour words ending with CRITERIA

    Try

    =IFERROR(INDEX($A$1:$A$44444,AGGREGATE(15,6,ROW($A$1:$A$1000)/(RIGHT($A$1:$A$44444,LEN($I$1))=$I$1),ROWS($1:1))),"")

    You should have been able to do this as this type request from you has been repeated numerous times. As Ali said in an earlier note , learn to do things for yourself for once!

    and better description would be "List all words ending NET" or "List all words ending criteria in $I$1""
    Last edited by JohnTopley; 02-28-2022 at 04:50 PM.

  5. #5
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: pour words ending with CRITERIA

    Thank you John that was beyond quick , the first answer searches NET everywhere this one searched at the end

  6. #6
    Forum Expert
    Join Date
    09-07-2014
    Location
    Israel
    MS-Off Ver
    office 365
    Posts
    3,187

    Re: pour words ending with CRITERIA

    Here is mine:
    =IFERROR(INDEX($A$1:$A$44444,SMALL(IF((RIGHT($A$1:$A$44444,3)="NET"),MATCH(ROW($A$1:$A$44444),ROW($A$1:$A$44444))),ROW(A1))),"")

  7. #7
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: pour words ending with CRITERIA

    Will the LEFT word for say if I put RAT on L2 on wona pour words not end with RAT instead starting with ?

  8. #8
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: pour words ending with CRITERIA

    So that i dont have to start another thread ,look at the RAT thingi
    Attached Files Attached Files

  9. #9
    Forum Expert
    Join Date
    09-07-2014
    Location
    Israel
    MS-Off Ver
    office 365
    Posts
    3,187

    Re: pour words ending with CRITERIA

    If you want words ending with RAT

    =IFERROR(INDEX($A$1:$A$44444,SMALL(IF((RIGHT($A$1:$A$44444,3)="NET"),MATCH(ROW($A$1:$A$44444),ROW($A$1:$A$44444))),ROW(A1))),"")

    change the word I coloured red to RAT.

  10. #10
    Forum Expert
    Join Date
    09-07-2014
    Location
    Israel
    MS-Off Ver
    office 365
    Posts
    3,187

    Re: pour words ending with CRITERIA

    Quote Originally Posted by makinmomb View Post
    so that i dont have to start another thread ,look at the rat thingi


    =iferror(index($a$1:$a$44444,small(if((left($a$1:$a$44444,3)="rat"),match(row($a$1:$a$44444),row($a$1:$a$44444))),row(a1))),"")

  11. #11
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,925

    Re: pour words ending with CRITERIA

    Simply change RIGHT to LEFT

  12. #12
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: pour words ending with CRITERIA

    Not working , editted the formula ,copy down not working
    Attached Files Attached Files

  13. #13
    Forum Expert
    Join Date
    09-07-2014
    Location
    Israel
    MS-Off Ver
    office 365
    Posts
    3,187

    Re: pour words ending with CRITERIA

    See attached...

    =iferror(index($a$1:$a$44444,small(if((left($a$1:$a$44444,3)="rat"),match(row($a$1:$a$44444),row($a$1:$a$44444))),row(a1))),"")
    Attached Files Attached Files

  14. #14
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: pour words ending with CRITERIA

    belinda work but need dynamic if i change L2 to say NOT then wont work , need that kind of JOHN T

  15. #15
    Forum Expert
    Join Date
    09-07-2014
    Location
    Israel
    MS-Off Ver
    office 365
    Posts
    3,187

    Re: pour words ending with CRITERIA

    =iferror(index($a$1:$a$44444,aggregate(15,6,row($a$1:$a$1000)/(left($a$1:$a$44444,len($l$1))=$l$1),rows($1:5))),"")

    OR
    =IFERROR(INDEX($A$1:$A$44444,SMALL(IF((LEFT($A$1:$A$44444,3)=$L$1),MATCH(ROW($A$1:$A$44444),ROW($A$1:$A$44444))),ROW(A1))),"")

  16. #16
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,925

    Re: pour words ending with CRITERIA

    Change the ROWS from ROWS(1:1) or whatever you started with

    ,ROWS($1:1))),"")

    always use this construct and you will not go wrong. The row increments by 1 as you drag down but you must set first parameter as ABSOLUTE
    Attached Files Attached Files
    Last edited by JohnTopley; 02-28-2022 at 05:46 PM.

  17. #17
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: pour words ending with CRITERIA

    belinda2ooo thank you , now works
    Last edited by makinmomb; 02-28-2022 at 05:36 PM. Reason: g

+ 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. Need Help Ending Code of Criteria Does Not Match
    By wvtn in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-17-2017, 05:41 PM
  2. Pull words ending with ETTE
    By makinmomb in forum Excel Formulas & Functions
    Replies: 17
    Last Post: 06-20-2017, 08:10 AM
  3. [SOLVED] Convert number to words ending format : 65/100 Only
    By sagrok in forum Excel Programming / VBA / Macros
    Replies: 17
    Last Post: 02-05-2017, 02:58 AM
  4. words ending in "L"
    By Permits in forum Excel General
    Replies: 5
    Last Post: 12-24-2016, 09:17 PM
  5. Replies: 4
    Last Post: 10-25-2016, 04:45 PM
  6. Problème pour executer un .bat
    By marcom in forum Non English Excel
    Replies: 2
    Last Post: 10-08-2008, 09:14 AM
  7. counting words with a specific ending
    By DaSpunkyGenius in forum Excel General
    Replies: 8
    Last Post: 10-20-2006, 02:07 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