Tuesday, May 26, 2026

Top Tableau Scenario-Based Interview Questions Set - 12 (1- 15)

 

  1. How would you identify customers with highest average order value?
    Divide total sales by distinct orders for each customer.
    Example:

    SUM([Sales]) / COUNTD([Order ID])
  2. How would you calculate sales growth between two selected years?
    Compare sales using year filter or parameter selection.
    Example:

    (SUM([Sales CY]) - SUM([Sales PY]))
    / SUM([Sales PY])
  3. How would you identify products never sold?
    Use left join/scaffold and check for null sales.
    Example:

    ISNULL(SUM([Sales]))
  4. How would you create a moving average for 6 months?
    Use WINDOW_AVG table calculation.
    Example:

    WINDOW_AVG(SUM([Sales]),-5,0)
  5. How would you show customers with sales above regional average?
    Compare customer sales against window average.
    Example:

    SUM([Sales]) > WINDOW_AVG(SUM([Sales]))
  6. How would you calculate profit contribution percentage?
    Divide individual profit by total profit.
    Example:

    SUM([Profit]) / TOTAL(SUM([Profit]))
  7. How would you identify seasonal sales spikes?
    Compare monthly sales trends across years.
    Example:

    LOOKUP(SUM([Sales]),-1)
  8. How would you create a customer retention dashboard?
    Track repeat customers over periods using COUNTD.
    Example:

    COUNTD([Customer ID])
  9. How would you calculate days between first and last purchase?
    Use MIN and MAX order dates.
    Example:

    DATEDIFF('day',
    MIN([Order Date]),
    MAX([Order Date]))
  10. How would you identify underperforming regions?
    Compare regional sales against target or average sales.
    Example:
    SUM([Sales]) < WINDOW_AVG(SUM([Sales]))

Monday, May 25, 2026

Top Tableau Scenario-Based Interview Questions Set - 11 (1- 15)

 

  1. How would you identify top profit-making customers?
    Rank customers based on Profit measure.
    Example:

    RANK(SUM([Profit])) <= 10
  2. How would you calculate average order quantity?
    Divide total quantity by distinct orders.
    Example:

    SUM([Quantity]) / COUNTD([Order ID])
  3. How would you show only last 30 days sales?
    Filter records using DATEDIFF.
    Example:

    DATEDIFF('day',[Order Date],TODAY()) <= 30
  4. How would you identify products with highest growth?
    Compare current sales with previous period sales.
    Example:

    (SUM([Sales]) - LOOKUP(SUM([Sales]),-1))
    / LOOKUP(SUM([Sales]),-1)
  5. How would you create customer segmentation in Tableau?
    Group customers based on sales value.
    Example:

    IF SUM([Sales]) > 100000 THEN "Premium"
    ELSEIF SUM([Sales]) > 50000 THEN "Gold"
    ELSE "Standard"
    END
  6. How would you identify orders shipped on the same day?
    Compare Order Date and Ship Date.
    Example:

    DATEDIFF('day',[Order Date],[Ship Date]) = 0
  7. How would you calculate sales per region percentage?
    Divide regional sales by total sales.
    Example:

    SUM([Sales]) / TOTAL(SUM([Sales]))
  8. How would you create a dynamic measure selector?
    Use parameter with CASE statement.
    Example:

    CASE [Measure Selector]
    WHEN "Sales" THEN SUM([Sales])
    WHEN "Profit" THEN SUM([Profit])
    WHEN "Quantity" THEN SUM([Quantity])
    END
  9. How would you identify the best month for sales?
    Rank monthly sales values.
    Example:

    RANK(SUM([Sales])) = 1
  10. How would you calculate order processing time?
    Use DATEDIFF between order and shipment dates.
    Example:
        DATEDIFF('day',[Order Date],[Ship Date])
  1. How would you display customers contributing negative profit?
    Filter customers with loss.
    Example:
        SUM([Profit]) < 0
  1. How would you compare sales against target percentage?
    Divide actual sales by target sales.
    Example:
        SUM([Sales]) / SUM([Target])
  1. How would you calculate distinct customer count by region?
    Use COUNTD function.
    Example:
        COUNTD([Customer ID])
  1. How would you create a flag for high-priority orders?
    Use conditional logic on Priority field.
    Example:
        IF [Priority] = "High" THEN "Important"
        ELSE "Normal"
        END
  1. How would you display monthly average profit trend?
    Use AVG aggregation with Month dimension.
    Example:
        AVG([Profit])