0
0
Figmabi_tool~20 mins

Variant matrix organization in Figma - Practice Problems & Coding Challenges

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

What is the main purpose of organizing a variant matrix in a BI dashboard design?

ATo display all possible combinations of product features clearly for analysis
BTo reduce the number of data points by hiding variant details
CTo limit user interaction by fixing variant choices
DTo create a random assortment of product options without structure
Attempts:
2 left
💡 Hint

Think about how variant matrices help users understand product options.

data_modeling
intermediate
2:00remaining
Structuring Data for Variant Matrix

Which data structure best supports creating a variant matrix for multiple product attributes in a BI tool?

AA JSON string stored in one cell per product
BA single column listing all product names without attributes
CA flat table with columns for each attribute and rows for each variant combination
DMultiple unrelated tables without keys linking attributes
Attempts:
2 left
💡 Hint

Consider how BI tools use tables to filter and slice data.

dax_lod_result
advanced
2:30remaining
DAX Measure for Variant Count

Given a product variant table with columns: ProductID, Color, Size, and Stock, which DAX measure correctly counts unique variant combinations available in stock?

Figma
Measure = CALCULATE(DISTINCTCOUNT('Variants'[ProductID]), FILTER('Variants', 'Variants'[Stock] > 0))
AMeasure = CALCULATE(DISTINCTCOUNT('Variants'[ProductID]), FILTER('Variants', 'Variants'[Stock] > 0))
BMeasure = COUNTROWS(FILTER('Variants', 'Variants'[Stock] > 0))
CMeasure = DISTINCTCOUNT('Variants'[Color] & 'Variants'[Size])
DMeasure = SUM('Variants'[Stock])
Attempts:
2 left
💡 Hint

Focus on counting unique product IDs where stock is positive.

visualization
advanced
2:00remaining
Best Visualization for Variant Matrix

Which visualization type best represents a variant matrix showing multiple product attributes and their availability?

AScatter plot of product price vs. size
BPie chart showing total stock per product
CLine chart showing stock trends over time
DMatrix visual with attributes as rows and columns, showing availability as values
Attempts:
2 left
💡 Hint

Think about how to display multiple attributes and their combinations clearly.

🔧 Formula Fix
expert
3:00remaining
Debugging Variant Matrix Filtering Issue

A variant matrix in a BI report shows all variants, including those with zero stock, despite a filter applied to show only available variants. Which DAX measure fix will correctly apply the stock filter?

Figma
Current measure: VariantCount = DISTINCTCOUNT('Variants'[VariantID])
AVariantCount = DISTINCTCOUNT(FILTER('Variants', 'Variants'[Stock] > 0)[VariantID])
BVariantCount = CALCULATE(DISTINCTCOUNT('Variants'[VariantID]), 'Variants'[Stock] > 0)
CVariantCount = COUNTROWS(FILTER('Variants', 'Variants'[Stock] > 0))
DVariantCount = SUMX('Variants', IF('Variants'[Stock] > 0, 1, 0))
Attempts:
2 left
💡 Hint

Use CALCULATE with a filter condition inside to apply context correctly.