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?
Think about balancing image visibility and text readability.
Setting transparency around 50% allows the background image to be visible but not overpower the report visuals, maintaining readability.
Which of the following is NOT a recommended best practice when adding images as backgrounds or visuals in Power BI reports?
Think about clarity and accessibility in reports.
Embedding text inside images is discouraged because it reduces accessibility and cannot be read by screen readers or searched.
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.
Measure = IF(SUM('Sales'[Amount]) > 100000, TRUE(), FALSE())
Check the correct use of TRUE() and FALSE() functions in DAX.
Option B uses TRUE() and FALSE() functions correctly, returning Boolean values. Option B uses TRUE and FALSE without parentheses, which is invalid in DAX. Option B misses parentheses on TRUE and FALSE and uses CALCULATE unnecessarily. Option B returns text strings, not Boolean values.
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?
Consider how Power BI handles image sources for published reports.
Power BI requires images to be uploaded or embedded, not linked from local file paths, which are inaccessible online.
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?
Think about image scaling and important content placement.
A large fixed-size image with centered important content and transparent edges adapts better because the edges can crop on smaller screens without losing key visuals.
Power BI does not support SVG backgrounds or automatic image switching by device type.