0
0
Power BIbi_tool~10 mins

Report backgrounds and images in Power BI - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to set a background image in Power BI report using the Format pane.

Power BI
In the Format pane, under Page Background, toggle [1] to enable the background image.
Drag options to blanks, or click blank then click option'
AImage URL
BImage Fit
CImage
DAdd Image
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting 'Add Image' which is not a toggle but a button.
Confusing 'Image Fit' with enabling the image.
Looking for 'Image URL' which is not used here.
2fill in blank
medium

Complete the code to adjust the transparency of the report background image.

Power BI
In the Format pane, under Page Background, use the [1] slider to change the transparency level.
Drag options to blanks, or click blank then click option'
ATransparency
BSaturation
CContrast
DBrightness
Attempts:
3 left
💡 Hint
Common Mistakes
Adjusting Brightness instead of Transparency.
Changing Contrast or Saturation which affect colors, not transparency.
3fill in blank
hard

Fix the error in the DAX expression to display an image URL dynamically in a card visual.

Power BI
ImageURL = SELECTEDVALUE('Images'[[1]])
Drag options to blanks, or click blank then click option'
AURL
BImagePath
CImage
DImageURL
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Image' or 'URL' which may not match the actual column name.
Using 'ImagePath' which is not the correct column here.
4fill in blank
hard

Fill both blanks to set the background image fit mode and toggle the image visibility.

Power BI
Format pane > Page Background > Image Fit: [1], toggle Image: [2]
Drag options to blanks, or click blank then click option'
AFit
BTrue
CFalse
DFill
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'Fit' instead of 'Fill' for full coverage.
Setting toggle to False which hides the image.
5fill in blank
hard

Fill all three blanks to create a measure that returns an image URL based on a selected category.

Power BI
Image Measure = SWITCH(SELECTEDVALUE('Category'[Name]), [1], "https://example.com/cat1.png", [2], "https://example.com/cat2.png", [3] )
Drag options to blanks, or click blank then click option'
A"Category1"
B"Category2"
C"https://example.com/default.png"
D"Category3"
Attempts:
3 left
💡 Hint
Common Mistakes
Using category names without quotes.
Not using the default URL as the last blank.
Using a category name instead of the default URL for the last blank.