+ Reply to Thread
Results 1 to 8 of 8

Using If formula, & Formula, and Text in same cell

Hybrid View

  1. #1
    Registered User
    Join Date
    04-26-2013
    Location
    Torrance, California
    MS-Off Ver
    Excel 2010
    Posts
    3

    Using If formula, & Formula, and Text in same cell

    Im having serious difficulty doing this please help, if you know.
    I couldnt figure out make the cells look proper so I just attached a picture of the spreadsheet.

    help.jpg



    This is my formula. This is close to what I want but not quite

    =F2&"Dog,"&G2&" Cat, "& H2&" Chicken," &I2& " Pig"

    This shows- 1Dog, Cat, 1 Chicken, Pig

    I want it like this however, if the Cell is blank than I dont want the words to show. I've tried several different formulas and understand it may not be possible in Excel as the program is not a human brain. So the first line I want it to show

    1 Dog, 1 Chicken

    I dont want to see the the Cat or Pig unless there is a number there. Also I want the number related to the cell to be even so the second line I would like it to be

    1 Dog, 2 Cat, 1 Chicken

    If I wasn't clear please let me know, but I dont know how I could explain it better. Only other thing I may be able to do is print screen if necessary. Thank you so much if you can help though.
    Attached Images Attached Images

  2. #2
    Valued Forum Contributor Lemice's Avatar
    Join Date
    04-13-2013
    Location
    Somewhere.
    MS-Off Ver
    Excel 2016
    Posts
    696

    Re: Using If formula, & Formula, and Text in same cell

    Hello,

    Basing on what you described, you can always do =IF(F2>0,F2&" Dog","") & ...
    If you can provide a sample file however, that would be so much easier for others to help you also.
    (copy pasta from Ford)
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools

    Regards,
    Lem

  3. #3
    Registered User
    Join Date
    04-26-2013
    Location
    Torrance, California
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: Using If formula, & Formula, and Text in same cell

    Help.xlsx

    Heres an attachment. Oh my gosh if you figure this out Ill be soo happy.

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Using If formula, & Formula, and Text in same cell

    This is messy, but see if it gets you where you want to be?

    =IF(B2="","",SUM($B$2:B2)&" "&B$1&", ")&IF(C2="","",SUM($C$2:C2)&" "&C$1&", ")&IF(D2="","",SUM($D$2:D2)&" "&D$1&", ")&IF(E2="","",SUM($E$2:E2)&" "&E$1&", ")

    Edit: Modified to deal with trailing comma's, thanks to Lemice's suggestion....
    =IF(B2="","",SUM($B$2:B2)&" "&B$1&IF(COUNTA(C2:E2)=0,"",", "))&IF(C2="","",SUM($C$2:C2)&" "&C$1&IF(COUNTA(D2:E2)=0,"",", "))&IF(D2="","",SUM($D$2:D2)&" "&D$1&IF(E2="","",", "))&IF(E2="","",SUM($E$2:E2)&" "&E$1)
    Last edited by FDibbins; 04-26-2013 at 07:51 PM.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Valued Forum Contributor Lemice's Avatar
    Join Date
    04-13-2013
    Location
    Somewhere.
    MS-Off Ver
    Excel 2016
    Posts
    696

    Re: Using If formula, & Formula, and Text in same cell

    You can try this formula in A2
    =IF(ISBLANK(B2),"",B2&" Dog")&IF(ISBLANK(C2),"",REPT(", ",--(COUNTA(B2:B2)>=1))&C2&" Cat")&IF(ISBLANK(D2),"",REPT(", ",--(COUNTA(B2:C2)>=1))&D2&" Chicken")&IF(ISBLANK(E2),"",REPT(", ",--(COUNTA(B2:D2)>=1))&E2&" Pig")
    And here is your sample the formula.

    I'm sorry if it isn't elegant at one bit, but at least it does the job ...

    The hardest part was adding the comma. If you don't need it, it will be much easier.
    Attached Files Attached Files

  6. #6
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Using If formula, & Formula, and Text in same cell

    If you're open to using a VBA function...

    Copy and paste the code below into a general module.

    Function aconcat(a As Variant, Optional sep As String = "") As String
    
    
    'VBA code by Harlan Grove
       
        Dim y As Variant
     
        If TypeOf a Is Range Then
            For Each y In a.Cells
                aconcat = aconcat & y.Value & sep
            Next y
        ElseIf IsArray(a) Then
            For Each y In a
                aconcat = aconcat & y & sep
            Next y
        Else
            aconcat = aconcat & a & sep
        End If
     
        aconcat = Left(aconcat, Len(aconcat) - Len(sep))
    
    
    End Function
    Then, enter this array formula** in cell A1 and copy down as needed:

    =SUBSTITUTE(SUBSTITUTE(TRIM(aconcat(IF(B2:E2<>"",
    B2:E2&"^"&B$1:E$1,"")&" "))," ",", "),"^"," ")

    ** array formulas need to be entered using the key
    combination of CTRL,SHIFT,ENTER (not just ENTER).
    Hold down both the CTRL key and the SHIFT key
    then hit ENTER.

    It would be better to do all the processing within the VBA function if you can get someone to write a function that will do that.
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  7. #7
    Registered User
    Join Date
    04-26-2013
    Location
    Torrance, California
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: Using If formula, & Formula, and Text in same cell

    I must admit that was impressive. I tried a number of codes and formulas for hours and couldnt do it, yet you did it in a matter of minutes. I definitely do not mind the messiness as our client will only see the end result. Thank you so much I am indebted to you more than I wish to admit. Thank all of you for your help. You have solved my question to the fullest.

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Using If formula, & Formula, and Text in same cell

    You're welcome. We appreciate the feedback!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

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