Skip to main content

Imagine a scenario where you have a list of products that are options in a text list (dropdown).

The product pricing is as follows:

First selection (regardless of which) is the highest price.

Next selection is a slightly lower price.

Following selection is lower price, and so on.

 

Example of pricing:

Product

Price

First Selection

$50/unit

Second Selection

$30/unit

Third Selection

$15/unit

 

How would you approach this configuration?

 Playbook Configuration (Set up for a total of 3 products):

  1. Set up a MULTI SELECT text list playbook question with the products as options.

Product Assignment Configuration

  1. Use the IncludeANY function in the assignment rule of the products

Pricing Rules Configuration

  1. Location A gets a set basic price rule of the highest price (50$ per example above)
  2. Location B gets 2 advanced pricing rules:
    1. IncludesEXACT((Product.Location_Selection],"Location B","Location C") OR IncludesEXACT((Product.Location_Selection],"Location B"), with a price of 50$ (highest price tier)
    2. IncludesALL((Product.Location_Selection],"Location A","ProLocationduct B"), with a price of 30$ (second price tier)
  3. Location C gets 3 advanced pricing rules:
    1. IncludesEXACT((Product.Location_Selection],"Location C"), with a price of 50$ (highest price tier)
    2. IncludesEXACT((Product.Location_Selection],"Location A","Location C") OR IncludesEXACT((Product.Location_Selection],"Location B","Location C"), with a price of 30$ (second price tier)
    3. IncludesEXACT((Product.Location_Selection],"Location A","Location B","Location C"), with a price of 14$ (third price tier)

Reply