Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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"
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.