+ Reply to Thread
Results 1 to 3 of 3

Nested IF??

  1. #1
    Registered User
    Join Date
    10-05-2006
    Posts
    34

    Cool Nested IF??

    i have a sheet that looks like so:

    date name amount status
    11/1/06 sherry 500 refund


    can i have a formula that will return the amount provided the the name is sherry and the status is refund??

    =if(b2="sherry" and d2="refund" then display c2, if not then 0...

    thanks in advance for your help

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Try

    =IF(AND(B2="sherry",D2="refund"),C2,0)

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Valued Forum Contributor mudraker's Avatar
    Join Date
    11-10-2003
    Location
    Melbourne, Australia
    Posts
    3,983
    You sure can

    =IF(AND(B2="sherry",D2="refund"),C2, 0)
    Please Read Forum Rules Before Posting
    Wrap VBA code by selecting the code and clicking the # icon or Read This
    How To Cross Post politely

    Top Excel links for beginners to Experts

    If you are pleased with a member's answer then use the Scales icon to rate it
    If my reply has assisted or failed to assist you I welcome your 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