How would you calculate customer purchase frequency?
Divide total orders by distinct customers.
Example:COUNTD([Order ID]) / COUNTD([Customer ID])How would you identify the most profitable product category?
Rank categories based on total profit.
Example:RANK(SUM([Profit])) = 1How would you calculate average discount percentage?
Use AVG aggregation on Discount field.
Example:AVG([Discount]) * 100How would you identify customers with zero profit orders?
Filter orders where profit equals zero.
Example:SUM([Profit]) = 0How would you compare quarterly sales performance?
Use Quarter dimension with Sales measure.
Example:DATETRUNC('quarter',[Order Date])How would you calculate average shipping delay by region?
Use DATEDIFF and aggregate by Region.
Example:AVG(DATEDIFF('day',[Ship Date],[Delivery Date]))How would you identify high-discount low-profit orders?
Apply conditional filter using Discount and Profit.
Example:[Discount] > 0.3
AND
[Profit] < 0How would you create dynamic ranking in Tableau?
Use parameter-driven rank calculation.
Example:RANK(SUM([Sales])) <= [Top Rank]How would you calculate customer-wise profit margin?
Divide customer profit by customer sales.
Example:SUM([Profit]) / SUM([Sales])- How would you identify products with declining sales trend?
Compare current sales with previous period sales.
Example:
SUM([Sales]) < LOOKUP(SUM([Sales]),-1)
Top Tableau Scenario-Based Interview Questions Set - 13 (1- 10)
ReplyDelete