Minimum Premium

Comments

5 comments

  • Avatar
    Paul Taylor

    Hi Guys,

    Have you had chance to look at this question?

    Thanks

    Paul

    0
    Comment actions Permalink
  • Avatar
    Rob Symonds

    Hi Paul,

    To set a minimum charge for a given question (cover) you can add this to your rate file:

    ###
    SetFee:QuestionToSetMinCharge
    IF([QuestionToSetMinCharge_Result] < MIN, MIN,[QuestionToSetMinCharge_Result])
    ###

    If you need any further clarification please ask.

    Thanks,

    Rob. 

    0
    Comment actions Permalink
  • Avatar
    Paul Taylor

    Hi Rob,

    Thanks - but I need the minimum premium to be a minimum for a particular section (ie, cover). For example, in our household policy we have 3 possible sum-insured:

    Buildings Only

    Contents Only

    Buildings & Contents

    The user selects which type of policy they want. I need to be able to set a different minimum premium for each of the 3 covers.

    Cheers

    Paul

    0
    Comment actions Permalink
  • Avatar
    Rob Symonds
    Hi,

    Fair enough, so, have I got this right?

    You want to conditionally set a minimum for a given cover based on the answer to another question?

    ###
    Answer:CoverRequired,SetFee:BuildingsOnly
    "Buildings","IF([BuildingsOnly_Result] < MIN, MIN,[BuildingsOnly_Result])"
    ###
    Answer:CoverRequired,SetFee:ContentsOnly
    "Contents","IF([ContentsOnly_Result] < MIN, MIN,[ContentsOnly_Result])"
    ###
    Answer:CoverRequired,SetFee:BuildingsAndContents
    "BandC","IF([BuildingsAndContents_Result] < MIN, MIN,[BuildingsAndContents_Result])"
    ###

    0
    Comment actions Permalink
  • Avatar
    Paul Taylor

    Hi Rob,

    Yes, that looks like it'll work, thank you!

    Cheers

    Paul

    0
    Comment actions Permalink

Please sign in to leave a comment.