Which of the following best describes the primary use of the Line tool in Figma when creating dashboards?
Think about how lines help organize information visually.
The Line tool is mainly used to draw straight lines that connect or separate elements, improving readability and flow in dashboards.
In a dashboard flowchart, what does an arrow drawn from a sales chart to a profit chart typically indicate?
Consider what direction arrows usually show in data flows.
Arrows typically show direction of flow or dependency. Here, profit depends on sales, so the arrow points from sales to profit.
You have a DAX measure that calculates total sales. You want to create a line visual showing sales trend and use arrows to indicate increase or decrease compared to previous month. Which DAX expression correctly calculates the monthly sales difference?
MonthlySalesDiff = SUM(Sales[Amount]) - CALCULATE(SUM(Sales[Amount]), PREVIOUSMONTH(Calendar[Date]))
Think about how to subtract previous month's sales from current month.
Option A correctly subtracts previous month's sales from current month's sales to find the difference.
To create arrow visuals showing data flow between tables in a Power BI dashboard, which data modeling practice is essential?
Think about how data flows between tables in BI models.
Correct relationships with directionality allow arrow visuals to represent data flow accurately.
You created arrows between visuals to show data flow, but some arrows point backward, confusing users. What is the most likely cause?
Consider what controls data flow direction in BI tools.
Incorrect cross-filter direction in relationships can cause arrows to show reversed data flow, confusing users.