0
0
Figmabi_tool~20 mins

Line and arrow tools in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Line and Arrow Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Line Tool Usage

Which of the following best describes the primary use of the Line tool in Figma when creating dashboards?

ATo import external images into the dashboard.
BTo fill areas with color gradients.
CTo add text labels to charts.
DTo create straight connectors between visual elements for clarity.
Attempts:
2 left
💡 Hint

Think about how lines help organize information visually.

visualization
intermediate
1:30remaining
Arrow Tool Direction Impact

In a dashboard flowchart, what does an arrow drawn from a sales chart to a profit chart typically indicate?

AThe sales chart is unrelated to the profit chart.
BThe profit chart data is input data for the sales chart.
CThe profit chart data is derived from the sales chart data.
DThe arrow is decorative and has no meaning.
Attempts:
2 left
💡 Hint

Consider what direction arrows usually show in data flows.

dax_lod_result
advanced
2:30remaining
DAX Measure with Line and Arrow Visuals

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?

Figma
MonthlySalesDiff = SUM(Sales[Amount]) - CALCULATE(SUM(Sales[Amount]), PREVIOUSMONTH(Calendar[Date]))
AMonthlySalesDiff = SUM(Sales[Amount]) - CALCULATE(SUM(Sales[Amount]), PREVIOUSMONTH(Calendar[Date]))
BMonthlySalesDiff = SUM(Sales[Amount]) + CALCULATE(SUM(Sales[Amount]), NEXTMONTH(Calendar[Date]))
CMonthlySalesDiff = SUM(Sales[Amount]) * CALCULATE(SUM(Sales[Amount]), PREVIOUSMONTH(Calendar[Date]))
DMonthlySalesDiff = CALCULATE(SUM(Sales[Amount]), NEXTMONTH(Calendar[Date])) - SUM(Sales[Amount])
Attempts:
2 left
💡 Hint

Think about how to subtract previous month's sales from current month.

data_modeling
advanced
2:00remaining
Modeling Relationships for Arrow Visuals

To create arrow visuals showing data flow between tables in a Power BI dashboard, which data modeling practice is essential?

AEstablishing one-to-many relationships with correct directionality between tables.
BCreating duplicate tables for each arrow visual.
CUsing only disconnected tables to avoid confusion.
DAvoiding relationships and using only calculated columns.
Attempts:
2 left
💡 Hint

Think about how data flows between tables in BI models.

🔧 Formula Fix
expert
3:00remaining
Debugging Arrow Direction in Dashboard

You created arrows between visuals to show data flow, but some arrows point backward, confusing users. What is the most likely cause?

AThe arrow colors are too light to see direction.
BThe data model relationships have incorrect cross-filter direction causing reversed flow.
CThe visuals are not aligned properly on the canvas.
DThe dashboard theme does not support arrows.
Attempts:
2 left
💡 Hint

Consider what controls data flow direction in BI tools.