+ Reply to Thread
Results 1 to 5 of 5

Help with Formula

  1. #1
    Forum Contributor
    Join Date
    02-16-2006
    Posts
    200

    Help with Formula

    can anyone help

    I would like to return a result based on the following scenario

    If cell A1 <10% return "0" or if cell A1 >10% sum would then = cell A3-A4

    Hope this makes sense

  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
    I assumed that it's less than or equal to 10%

    =IF(A1<=10%,"0",A3-A4)

    VBA Noob

  3. #3
    Forum Contributor
    Join Date
    02-16-2006
    Posts
    200

    Help with Formula

    Thanks for the help but its not quite returning the result I was looking for - probably because I am not explaining very well - I will try again -


    The result is based on 2 scenarios -

    If cell A1 <10% return "0" if >10% the result would be cell A3-A4

    sorry if this still confuses

  4. #4
    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
    What happens if it equals 10%

  5. #5
    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
    If your not worried about it matching 10% then

    =IF(A1<10%,"0",A3-A4)

    VBA Noob

+ 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