+ Reply to Thread
Results 1 to 5 of 5

Cetain cell to equal #*12 if "M" or #*1 if "A" and other questions

  1. #1
    Registered User
    Join Date
    03-25-2013
    Location
    TX
    MS-Off Ver
    2000
    Posts
    1

    Cetain cell to equal #*12 if "M" or #*1 if "A" and other questions

    Excel Spread.pngThanks for having this forum. I have searched but I don't know how to search for something I don't know how to do so any help would be appreciated.
    This is for a spread sheet for figuring my payout on insurance
    1. if O8 is "M" then N8 needs to be *12, if 08 is "A" then N* needs to be *1
    2. I have a drop down box in B10, based on what that drop down box is I need Q10 to be *.XX (Example if B10 is MASA then it needs to be *.4, if B10 is M-LTC then it needs to be *.35) etc.
    3. Drop down box again. (These are based on 12 months of premium)
    a. If B10 is MASA then I need R10 to equal Q10. (Pays 12 months up front)
    b. If B10 is M-LTC then I need R10 to equal half of Q10 but nothing greater than $350 (Pays 6 months up front)
    c. If B8 is UTA-CAN then I need R8 to equal (excel formula that I know) =Q8*12/9 but nothing greater than $350 (pays 9 months up front)

    I really hope I have made my desires clear in the questioning. If not, I do apolgize.

    I tried to attach a pic of the areas i'm working with so hopefully it took

    Thanks,
    TG
    Attached Images Attached Images
    Last edited by Hawk77; 03-26-2013 at 12:18 AM. Reason: Admin told me too (so did the rules)

  2. #2
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: New here in dire need of help

    Please take a moment to read the forum rules and then amend your thread title to something descriptive of your problem. Once you have done this please send me a PM and I will remove this request.

    To change a Title on your post, click EDIT then Go Advanced and change your title, if 2 days have passed ask a moderator to do it for you.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  3. #3
    Registered User
    Join Date
    03-20-2013
    Location
    Hangzhou, China
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: New here in dire need of help

    Try these out:

    1. In cell N8
    =if(o8="M",61*12,if(o8="A",61*1,61))

    2. In Cell R10
    =if(B10="MASA",Q10,if(and(B10="M-LTC",Q10*.5<350),Q10*.5,if(B10="M-LTC",350)))

    3 In Cell R8
    =if(and(B8="UTA-CAN",Q8*12/9<350),Q8*12/9,if(B8="UTA-CAN",Q8*12/9,'whatever value if not either')

  4. #4
    Registered User
    Join Date
    03-20-2013
    Location
    Hangzhou, China
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: New here in dire need of help

    Sorry, 3 should have another close parentheses [)]at the end

  5. #5
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: New here in dire need of help

    Tayjayt,

    Its possible you didnt refresh your page before putting in the solution. However, for future reference, check forum rule 7 -

    Please do not ignore requests by Administrators, Moderators and senior forum members regarding forum rules.

    If you are unclear about the request or instruction then send a private message to them asking for clarification. Do not post a reply in a thread where a moderator has requested an action that has not yet been complied with e.g Title change or Code tags...etc

+ 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