Simple Calculator

One Variable

Missing variables: users

Number of users

Subtotal

Missing variables: users

Tax (18%)

Missing variables: users

Total (No Decimals)

Missing variables: users

Calculate based on $2 per user

Area Pricing Calculator

Two Variable

Width

Missing variables: width Meters

Height

Missing variables: height Meters

Area

Missing variables: width, height Square Meters

Price

Missing variables: width, height Square Meters

Calculate based on €8 per Square Meters

Advanced Options

Calculate based on 3 sliders and one selector

Plan

Pro
Plus

Daily Approx Orders

Missing variables: orders

Storage Space

Missing variables: storages meters

Discount

Missing variables: discount%

Total

$ Missing variables: plan, orders, storages, discount

Plan

Pro
Plus

Daily Approx Orders

Missing variables: orders

Storage Space

Missing variables: storages meters

Discount

Missing variables: discount%

Total

$ Missing variables: plan, orders, storages, discount

This formula calculates your total cost based on whether you have Pro or Plus pricing. Pro gives you cheaper rates of $30 per order and $500 per storage, while Plus costs $150 per order and $2000 per storage, with your discount taken off at the end.

Advanced Pricing Calculator - 1.2 [New]

Custom pricing with variables, slider and selectors using javascript formulas and variables

  1. Each slider or selector has a Variable property control where you assign a variable name (like price)

  2. The Display component uses JavaScript expressions in the formula field, allowing math operations (e.g., price * quantity), conditional logic (e.g., price > 100 ? discount : 0), or functions (e.g., Math.max(price, 50)). These variable names are referenced in the Display component's formula to calculate and display results dynamically.

  3. You can ask ChatGPT for a JavaScript expression by describing your logic.

    For example, say,
    I need a JavaScript expression to calculate the total price using price, quantity, and tax variables, with a 10% tax and a 5% discount if quantity is greater than 10. here's an example of an expression: plan === "Pro" ? (orders * 30 + storages * 500) * (1 - discount / 100) : (orders * 150 + storages * 2000) * (1 - discount / 100);

    ChatGPT will give you an expression, which you can use in the formula field of the Display component.