+ Reply to Thread
Results 1 to 3 of 3

TEXTJOIN with multiple criteria

  1. #1
    Registered User
    Join Date
    04-03-2017
    Location
    Denmark
    MS-Off Ver
    365
    Posts
    92

    TEXTJOIN with multiple criteria

    Hello,

    I am currently using this formula to join text, if the cells contain numbers (Using crtl, shift, enter)

    {=TEXTJOIN(", ";TRUE;IF(ISNUMBER(VO3:VY3);(Colours!$I$2:$S$2);""))}

    However, I'd like to add the criteria that the cells also do not contain zeroes. I would think the formula should look like this, but it will only give me blank returns.

    {=TEXTJOIN(", ";TRUE;IF(AND(ISNUMBER(VO3:VY3);VO3:VY3<>0);(Colours!$I$2:$S$2);""))}

    Any suggestions? Thank you!
    Last edited by Allerdrengen; 10-25-2018 at 09:22 AM.

  2. #2
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,211

    Re: TEXTJOIN with multiple criteria

    Don't use AND in array formula as it will return only 1 value

    Please try
    =TEXTJOIN(", ";TRUE;IF(ISNUMBER(VO3:VY3)*(VO3:VY3<>0);Colours!$I$2:$S$2;""))

  3. #3
    Registered User
    Join Date
    04-03-2017
    Location
    Denmark
    MS-Off Ver
    365
    Posts
    92

    Re: TEXTJOIN with multiple criteria

    Ah, that's why!
    Thank you very much.

+ 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. Removing duplicates from a TEXTJOIN
    By CKPHarry in forum Excel General
    Replies: 5
    Last Post: 01-02-2020, 05:57 PM
  2. [SOLVED] TextJoin formula with MID function
    By Brsth in forum Excel Formulas & Functions
    Replies: 11
    Last Post: 04-26-2018, 11:00 AM
  3. [SOLVED] Converting TEXTJOIN to CONCATENATE
    By mattmccormack1 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 04-22-2018, 05:46 PM
  4. Textjoin?
    By johandenver in forum Excel Programming / VBA / Macros
    Replies: 24
    Last Post: 10-01-2017, 03:18 PM
  5. Using TextJoin (Excel 2016) in VBA
    By ChemistB in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-21-2017, 06:52 PM
  6. TEXTJOIN only specific words
    By thoart in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-11-2017, 07:56 AM
  7. TEXTJOIN function
    By Tony Valko in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 08-13-2016, 06:48 PM

Tags for this Thread

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