Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
YasirBilal
Helper I
Helper I

Show Badge According to Points

Hello Everyone

 

i have 2 table one table have different badge and 2nd table have Employee with value

 

Badge table

 

PointsBadge
100image link of badge 1
200image link of badge 2
300image link of badge 3
400image link of badge 4

 

badge table look like this 

 

Employee table

 

EmployeePoints
Employee1150
Employee2100
Employee3250
Employee4350
Employee5500

 

employee table look like this now when i create relationship between these 2 table one to one relationship create problem with one to one is only work when both table have unique value. badge image only show when unique value match like 100 points have level 1 image it's only showing when employee have same points what i want is from 1 to 100 level 1 bagde from 101 to 200 level 2 bagde and so on 

 

any idea how i can do that i try one to many and many to one relation but nothing change badge image not even show when i change relation to one to many or many to one with one to one i need unique value in both table but in employee table vlaue not same it's change everyday 

 

if anyone can help me this thank you

 

 

1 ACCEPTED SOLUTION
sreenathv
Solution Sage
Solution Sage

Add a calculated column with the following DAX code to your Employee table.

 

BadgePoints = 
VAR P = Employee[Points]
VAR Result =
    SWITCH(
        TRUE(),
        P>=100 && P<200,100,
        P>=200 && P<300,200,
        P>=300 && P<400,300,
        P>=400,400,
        0)
RETURN
Result

This will give you the following result.

sreenathv_0-1618218034739.png

Then create the relationship between this new calculated column and your Badge table.

View solution in original post

2 REPLIES 2
sreenathv
Solution Sage
Solution Sage

Add a calculated column with the following DAX code to your Employee table.

 

BadgePoints = 
VAR P = Employee[Points]
VAR Result =
    SWITCH(
        TRUE(),
        P>=100 && P<200,100,
        P>=200 && P<300,200,
        P>=300 && P<400,300,
        P>=400,400,
        0)
RETURN
Result

This will give you the following result.

sreenathv_0-1618218034739.png

Then create the relationship between this new calculated column and your Badge table.

thank you

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.