This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
All,
i have this table
i want to identify the duplicates in column called skill by each "Name"
Output would need to look like this
so if the person has two skills based on their position the low "Pay Tier " line calls out the higher "Pay Tier"
not fussed if i do it in power query or power bi.
thanks in advance
Solved! Go to Solution.
hello @rafterse
please check if this accomodate your need.
create a new calculated column with following DAX.
Duplicate Skill =
var _Value =
MAXX(
FILTER(
'Table',
'Table'[Name]=EARLIER('Table'[Name])&&
'Table'[Skill]=EARLIER('Table'[Skill])&&
'Table'[Pay Tier]<EARLIER('Table'[Pay Tier])
),
'Table'[Pay Tier]
)
Return
IF(
not ISBLANK(_Value),
CONCATENATE("In Pay Tier ",_Value)
)
i assumed 'Pay Tier' is in the original table. Otherwise, please share how to define 'Pay Tier' column.
Hope this will help.
Thank you.
hello @rafterse
please check if this accomodate your need.
create a new calculated column with following DAX.
Duplicate Skill =
var _Value =
MAXX(
FILTER(
'Table',
'Table'[Name]=EARLIER('Table'[Name])&&
'Table'[Skill]=EARLIER('Table'[Skill])&&
'Table'[Pay Tier]<EARLIER('Table'[Pay Tier])
),
'Table'[Pay Tier]
)
Return
IF(
not ISBLANK(_Value),
CONCATENATE("In Pay Tier ",_Value)
)
i assumed 'Pay Tier' is in the original table. Otherwise, please share how to define 'Pay Tier' column.
Hope this will help.
Thank you.
how would i return the "Position" as well as the "Pay Teir" ?
You ledgend. thanks so much it worked a treat
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 19 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 20 | |
| 20 | |
| 19 |