You want to arrange three KPI cards side by side in a single row in Figma. Which direction setting should you use?
Think about how items are arranged side by side in a row.
Horizontal layout arranges items side by side in a row. Setting the frame's layout direction to horizontal aligns the KPI cards in one row with equal spacing.
Why is vertical direction often used for listing detailed data in BI dashboards?
Think about how you read lists in real life, like a grocery list or emails.
Vertical direction stacks items from top to bottom, which matches how people naturally scan lists, making detailed data easier to read.
Given a sales table with columns: ProductCategory, SalesAmount, and Date, you want to create a measure that sums SalesAmount for each ProductCategory displayed horizontally in a matrix visual. Which DAX measure correctly calculates total sales by ProductCategory?
Total Sales by Category = CALCULATE(SUM(Sales[SalesAmount]), ALLEXCEPT(Sales, Sales[ProductCategory]))
Think about keeping the filter on ProductCategory while summing sales.
ALLEXCEPT keeps the filter on ProductCategory, so the sum is calculated per category, suitable for horizontal categories in a matrix.
You want to enable vertical drill-down in a BI report from Year to Quarter to Month. Which data modeling approach supports this best?
Think about how drill-down works in BI tools using hierarchies.
A date dimension with a defined hierarchy allows vertical drill-down from Year to Quarter to Month smoothly in reports.
You set a frame's layout direction to horizontal in Figma to align three charts side by side. However, the charts stack vertically instead. What is the most likely cause?
Check the frame's layout direction setting carefully.
If the frame's layout direction is vertical, items stack top to bottom. Setting it to horizontal aligns items side by side.