0
0
Figmabi_tool~20 mins

Text tool basics in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Text Tool Basics Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Text Tool Usage

Which of the following best describes how to create a new text box in Figma using the Text tool?

AClick the Text tool, then drag on the canvas to create a fixed-size text box.
BClick the Text tool, then click anywhere on the canvas to create a point text box.
CDouble-click the Text tool icon to create a text box automatically.
DRight-click on the canvas and select 'Add Text' from the context menu.
Attempts:
2 left
💡 Hint

Think about how you start typing text in Figma.

dax_lod_result
intermediate
2:00remaining
Calculate Total Sales for Selected Region

Given a sales table with columns Region, SalesAmount, and Date, which DAX measure correctly calculates total sales only for the 'West' region?

Figma
Sales West = CALCULATE(SUM(Sales[SalesAmount]), Sales[Region] = "West")
ASales West = CALCULATE(SUM(Sales[SalesAmount]), Sales[Region] = "West")
BSales West = CALCULATE(SUM(Sales[SalesAmount]), FILTER(Sales, Sales[Region] = "West"))
CSales West = SUM(Sales[SalesAmount]) WHERE Sales[Region] = "West"
DSales West = SUMX(FILTER(Sales, Sales[Region] = "West"), Sales[SalesAmount])
Attempts:
2 left
💡 Hint

Remember that CALCULATE expects filter expressions or filter tables.

visualization
advanced
2:00remaining
Best Visualization for Showing Sales Trend Over Time

You want to show how sales change month by month over the last year. Which visualization type is best suited for this purpose?

ALine chart showing sales amount by month.
BBar chart showing total sales per region.
CPie chart showing sales by product category.
DScatter plot showing sales amount vs. customer age.
Attempts:
2 left
💡 Hint

Think about which chart type best shows changes over time.

🔧 Formula Fix
advanced
2:00remaining
Identify the Error in This DAX Measure

What error will this DAX measure produce?

Total Sales = SUM(Sales[Amount]) + FILTER(Sales, Sales[Region] = "East")

ATypeError: SUM expects a column, FILTER returns a table.
BNo error, measure returns total sales plus filtered sales.
CRuntimeError: Region column missing.
DSyntaxError: FILTER cannot be added to a number directly.
Attempts:
2 left
💡 Hint

Check the types of values SUM and FILTER return.

🎯 Scenario
expert
3:00remaining
Designing a Dashboard for Sales Performance

You are tasked with creating a sales performance dashboard for executives. They want to see total sales, sales by region, and monthly sales trends all on one page. Which combination of visualizations and layout best meets these needs?

AUse three separate pages: one for total sales, one for sales by region, and one for monthly trends.
BPlace a large pie chart for sales by region on top, a small card showing total sales below, and a line chart for monthly trends on the side.
CUse a card for total sales at the top center, a bar chart for sales by region below it, and a wide line chart for monthly sales trends spanning the bottom width.
DPlace a scatter plot for sales by region, a table for total sales, and a pie chart for monthly trends all in a grid.
Attempts:
2 left
💡 Hint

Think about clarity and ease of comparison on a single dashboard page.