+ Reply to Thread
Results 1 to 3 of 3

Formula to Populate field based on data in another field.

  1. #1
    Registered User
    Join Date
    04-05-2012
    Location
    Delaware
    MS-Off Ver
    Excel 2010
    Posts
    6

    Formula to Populate field based on data in another field.

    I have a formula in my sheet that will fill in a specific field with the text JobBOMPrt if there is a quantity greater than 0 in another coordinating field. I recently ran into an issue where i have a negative quantity and now need to modify the formula so that it will fill in that text if there is anything other than 0 or a blank cell.

    Any help would be great.



    =IF($H11>0,(CONCATENATE($A11,"JobBOMPrt")),"")

  2. #2
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Formula to Populate field based on data in another field.

    How about:

    =IF(AND($H11<>0,$H11<>""),(CONCATENATE($A11,"JobBOMPrt")),"")

  3. #3
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Formula to Populate field based on data in another field.

    Same formula logic, just done backwards:

    =IF(OR($H11={0,""}),"",$A11&"JobBOMPrt")
    Hope that helps,
    ~tigeravatar

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

+ 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