Challenge - 5 Problems
Export and Handoff Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Understanding Export Plugin Capabilities
Which of the following best describes the primary function of export plugins in design handoff workflows?
Attempts:
2 left
💡 Hint
Think about how designers share their work with developers.
✗ Incorrect
Export plugins help transform design files into formats that developers can easily use, such as CSS code or style guides, facilitating smooth handoff.
🎯 Scenario
intermediate2:00remaining
Choosing the Right Handoff Plugin
You need to share a Figma design with developers, including measurements, colors, and typography details. Which plugin feature is most critical for this handoff?
Attempts:
2 left
💡 Hint
Developers need precise style information and assets.
✗ Incorrect
Exporting design specs with CSS properties and assets ensures developers have all necessary details to build the design accurately.
❓ dax_lod_result
advanced2:30remaining
Calculating Total Exported Assets
Given a dataset of exported assets with columns: AssetType and ExportCount, which DAX measure correctly calculates the total number of exported assets regardless of type?
Figma
TotalExports = SUM(Exports[ExportCount])
Attempts:
2 left
💡 Hint
You want to add up all export counts, not count types.
✗ Incorrect
SUM adds all values in ExportCount, giving total exported assets. COUNT counts rows, DISTINCTCOUNT counts unique types, SUMX expects numeric expression.
❓ visualization
advanced2:30remaining
Best Visualization for Export Plugin Usage
You want to show monthly usage trends of different export plugins in a dashboard. Which visualization type best communicates this data clearly?
Attempts:
2 left
💡 Hint
Consider how to show changes over time and comparison between plugins.
✗ Incorrect
A stacked area chart displays trends over time and allows comparison of multiple plugins' usage clearly.
🔧 Formula Fix
expert3:00remaining
Debugging Export Plugin Data Model
A report shows incorrect total export counts because some assets are double-counted. The data model has a many-to-many relationship between Designs and Exports tables. What is the best fix?
Attempts:
2 left
💡 Hint
Many-to-many relationships often require an intermediate table.
✗ Incorrect
Using a bridge table resolves many-to-many relationships correctly, preventing double counting in aggregations.