0
0
Figmabi_tool~20 mins

File and project organization in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
BI File and Project Organizer
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Why organize BI project files into folders?

Imagine you have many reports, dashboards, and data sources in one BI project. Why is it important to organize these files into folders?

ATo find files quickly and avoid confusion when working with many items.
BBecause folders make the project run faster when loading data.
CTo reduce the file size of the project automatically.
DBecause BI tools require folders to save any file.
Attempts:
2 left
💡 Hint

Think about how you find your documents on your computer.

🎯 Scenario
intermediate
2:00remaining
Best practice for naming BI report files

You have multiple reports for sales, finance, and marketing. Which naming style helps your team understand the file purpose quickly?

AFinal, Draft, Old
BReport1, Report2, Report3
C2024Q1, 2024Q2, 2024Q3
DSales_Report_2024_Q1, Finance_Report_2024_Q1, Marketing_Report_2024_Q1
Attempts:
2 left
💡 Hint

Think about what information helps identify the report at a glance.

dax_lod_result
advanced
3:00remaining
Calculate total sales ignoring filters on Region

Given a Sales table with columns Region and SalesAmount, which DAX measure calculates total sales ignoring any filters on Region?

Figma
Measure = CALCULATE(SUM(Sales[SalesAmount]), ALL(Sales[Region]))
ASUM(Sales[SalesAmount])
BCALCULATE(SUM(Sales[SalesAmount]), ALL(Sales[Region]))
CSUMX(VALUES(Sales[Region]), Sales[SalesAmount])
DCALCULATE(SUM(Sales[SalesAmount]), FILTER(Sales, Sales[Region] = "East"))
Attempts:
2 left
💡 Hint

Think about how to remove filters on a specific column.

visualization
advanced
2:30remaining
Choose the best visualization for comparing sales trends by product category

You want to show how sales change over time for different product categories. Which visualization is best?

ALine chart with time on X-axis and sales on Y-axis, lines colored by product category.
BPie chart showing total sales per product category.
CStacked bar chart showing sales per product category for a single month.
DScatter plot with sales on X-axis and product category on Y-axis.
Attempts:
2 left
💡 Hint

Think about how to show changes over time for multiple groups.

🔧 Formula Fix
expert
3:00remaining
Identify the error in this DAX measure for average sales per customer

Given a Sales table with CustomerID and SalesAmount, what error does this measure cause?

AvgSalesPerCustomer = AVERAGE(Sales[SalesAmount]) / DISTINCTCOUNT(Sales[CustomerID])
Figma
AvgSalesPerCustomer = AVERAGE(Sales[SalesAmount]) / DISTINCTCOUNT(Sales[CustomerID])
AIt causes a syntax error because DISTINCTCOUNT cannot be used in division.
BIt returns the correct average sales per customer.
CIt returns an incorrect average because it divides average sales by distinct customers instead of total sales by customers.
DIt causes a runtime error due to division by zero.
Attempts:
2 left
💡 Hint

Think about what the formula calculates step by step.