+ Reply to Thread
Results 1 to 4 of 4

Can't figure out formula.

  1. #1
    Forum Contributor
    Join Date
    10-14-2004
    Location
    San Diego, CA
    Posts
    213

    Can't figure out formula.

    Can someone help me? I would like to add whatever is in cells A1 – D1, (in this
    case, cell content total is 4) and if cell E1 has a value, combine them in cell
    F1 to look like this, "4 + 1".

    =COUNT(A1:D1),IF(E1," + ","")

    I know this formula does not work. It's just to give you an idea of what I’m trying
    to do.

    Matt

  2. #2
    Valued Forum Contributor
    Join Date
    07-11-2004
    Posts
    851
    try

    =IF(ISNUMBER(E1)=TRUE,CONCATENATE(SUM(A1:D1)," + ",E1),"")
    not a professional, just trying to assist.....

  3. #3
    Forum Contributor
    Join Date
    08-23-2004
    Posts
    210
    Try this formula in F1: =SUM(A1:D1)&" + "&E1. If E1 is blank, F1 will be 4 +. If E1 is 0, F1 will be 4 + 0 (as a zero is still a value). Note space either side of +.

  4. #4
    Forum Contributor
    Join Date
    10-14-2004
    Location
    San Diego, CA
    Posts
    213
    Quote Originally Posted by duane
    try

    =IF(ISNUMBER(E1)=TRUE,CONCATENATE(SUM(A1:D1)," + ",E1),"")
    Ya, as far as I'm conserned your an expert. I subtituted COUNT for SUM and it works greate. Thanks!

+ 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