This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hey all,
I created Image dimension which contains Precentage between 0.1% to 100%, Precentage groups(0, 0-10,10-20...) and URL images:
How can I connect this dimenssion to Fact table which contains a calculation of Percentage that I want to show alongside this images?
If can't I connect the tables, how can I dynamicaly show the images by the values?
Example: 12% will show the 20% image, 92% will show the 100% image.
Thanks 🙂
Solved! Go to Solution.
hi @Anonymous
It sounds like a Dynamic Segmentation problem, you need to add two column start and from for each image.
then refer to this blog to create a measure
https://www.daxpatterns.com/dynamic-segmentation/
If you still have the problem, please share your sample pbix file and your expected output
Regards,
Lin
hi @Anonymous
It sounds like a Dynamic Segmentation problem, you need to add two column start and from for each image.
then refer to this blog to create a measure
https://www.daxpatterns.com/dynamic-segmentation/
If you still have the problem, please share your sample pbix file and your expected output
Regards,
Lin
@Anonymous , Try creating a measure like this a mark it has URL
measure = Switch(True(),
[Percent]>0 && [Percent] =<.10 ,"image1",
[Percent]>.10&& [Percent] =<.20 ,"image2",
"image3"
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 38 | |
| 28 | |
| 27 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 37 | |
| 32 | |
| 26 | |
| 25 |