0
0
Power BIbi_tool~20 mins

Report backgrounds and images in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Background Image Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
2:00remaining
Effect of Background Image Transparency on Report Readability

You added a background image to your Power BI report page. You want to ensure the report visuals remain easy to read.

Which transparency setting for the background image will best maintain visual clarity?

ASet transparency to 100% (fully transparent)
BSet transparency to 0% (fully opaque)
CSet transparency to around 50%
DSet transparency to 10% (mostly opaque)
Attempts:
2 left
💡 Hint

Think about balancing image visibility and text readability.

🧠 Conceptual
intermediate
2:00remaining
Best Practices for Using Images in Power BI Reports

Which of the following is NOT a recommended best practice when adding images as backgrounds or visuals in Power BI reports?

AUse images with text embedded to explain data points
BAvoid using images with strong colors that clash with report theme
CUse high-resolution images optimized for web to reduce file size
DEnsure images do not distract from the main data visuals
Attempts:
2 left
💡 Hint

Think about clarity and accessibility in reports.

dax_lod_result
advanced
2:30remaining
DAX Measure Impact on Image Display Logic

You want to show a background image only when total sales exceed 100,000. Which DAX measure correctly returns TRUE to trigger the image display?

Assume 'Sales'[Amount] is the sales column.

Power BI
Measure = IF(SUM('Sales'[Amount]) > 100000, TRUE(), FALSE())
AMeasure = IF(SUM('Sales'[Amount]) > 100000, "TRUE", "FALSE")
BMeasure = IF(SUM('Sales'[Amount]) > 100000, TRUE(), FALSE())
CMeasure = IF(CALCULATE(SUM('Sales'[Amount])) > 100000, TRUE(), FALSE())
DMeasure = IF(SUM('Sales'[Amount]) > 100000, TRUE, FALSE)
Attempts:
2 left
💡 Hint

Check the correct use of TRUE() and FALSE() functions in DAX.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting Background Image Not Displaying

You added a background image to your Power BI report page, but it does not appear when you publish the report online. What is the most likely cause?

AThe image format is unsupported (e.g., TIFF instead of PNG/JPEG)
BThe image file size is too large and exceeds Power BI limits
CThe report theme colors override the background image visibility
DThe image is linked from a local file path instead of uploaded
Attempts:
2 left
💡 Hint

Consider how Power BI handles image sources for published reports.

🎯 Scenario
expert
3:00remaining
Designing a Responsive Report Background for Multiple Devices

You need to design a Power BI report background image that looks good on desktop, tablet, and mobile devices. Which approach best ensures the background adapts well across these devices?

AUse a large fixed-size image with important content centered and transparent edges
BUse multiple background images and switch them with bookmarks for each device
CUse a small tiled image that repeats to fill the background area
DUse a vector image (SVG) as background to scale without quality loss
Attempts:
2 left
💡 Hint

Think about image scaling and important content placement.