Forum Discussion

FelipeQueiroz's avatar
FelipeQueiroz
New Member
1 year ago
Solved

How to Display Unique Images Per SKU in Small Multiples?

Hi everyone,
I'm trying to display unique images for each SKU using the Small Multiples feature in Power BI, but I'm encountering issues.

When I use a measure to display images in Small Multiples, it always shows the same image for all SKUs, instead of showing the unique image for each SKU.

FOTO ALTA QUALIDADE MEDIDA =
CALCULATE(
MAX('Images Table'[High Quality Image]),
FILTER(
'Images Table',
'Images Table'[SKU] = SELECTEDVALUE(Products[SKU])
)
)

OR

FOTO ALTA QUALIDADE MEDIDA =
MAX('Images Table'[High Quality Image])

Both measures still show the same image for all SKUs, even though the context of the Small Multiples should be filtering each SKU individually.

How can I ensure that each Small Multiple displays the unique image for its corresponding SKU?
Any guidance or suggestions would be greatly appreciated!

4 Replies