- How would you show Top 10 customers by sales in each region?
Use Region + Customer and apply Top N filter on Customer by Sales. - How would you display sales for the latest month only?
UseMAX(Date)filter or latest date LOD. - How would you highlight customers whose sales are above average?
Use conditional color withSUM(Sales) > WINDOW_AVG(SUM(Sales)). - How would you compare current year sales vs previous year sales?
Use dual axis or side-by-side bars with CY and PY calculations. - How would you show YoY growth % by category?
Use(SUM([CY Sales]) - SUM([PY Sales])) / SUM([PY Sales]). - How would you identify the top-performing product in each sub-category?
UseRANK(SUM(Sales)) = 1within each sub-category. - How would you display the latest available record for each customer?
Use FIXED LOD withMAX(Date)per customer. - How would you show running total sales month over month?
Apply Running Total table calculation on Sales. - How would you show moving average for last 3 months?
Use Moving Average table calculation with 3-period window. - How would you compare sales vs target in one chart?
Use dual axis with Sales bars and Target line. - How would you show profit ratio by region?
UseSUM(Profit)/SUM(Sales). - How would you identify loss-making products?
Filter products whereSUM(Profit) < 0. - How would you show sales contribution % by category?
Use Percent of Total table calculation on Sales. - How would you display only customers with repeat purchases?
Filter customers withCOUNT(Order ID) > 1. - How would you find customers who purchased in both 2024 and 2025?
Use set or LOD to identify customers present in both years. - How would you show products with no sales in the last 6 months?
Filter products whereMAX(Order Date) < TODAY()-180. - How would you show dynamic Top N products?
Use parameter for Top N and apply it in filter. -
How would you switch between Sales, Profit, and Quantity?
Use parameter + calculated field to swap measures. -
How would you allow users to toggle chart types?
Use parameter to switch between chart sheets. - How would you create a dynamic title?
Use dynamic title with parameter/filter values.