Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi power Bi community
I have a problem. my slicer shows the same text twice like this.
This is my Dax sorry for the Danish:
It seems like the multiple versions of "Igangværende sager" isn't added together even though they have the same name.
Can anyone help me solve this problem ?
Alle help is greatly appriciated.
Solved! Go to Solution.
When I deleted the column and create a new one that is an exact Crtl+c of the DAX it works fine.
It seems very werid. It might be a bug, because I have changed the column at some point.
I will see if I use the old colum somewhere with measure killer and than just use my new column.
Thanks for the help to everybody who wrote. 🙂
Hi,@ThomasWeppler .
It's great to see that you solved your problem and that you shared the method to the forum,
you can mark your option as a solution which will help other users in the forum.
I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.
Best Regards,
Carson Jian
When I deleted the column and create a new one that is an exact Crtl+c of the DAX it works fine.
It seems very werid. It might be a bug, because I have changed the column at some point.
I will see if I use the old colum somewhere with measure killer and than just use my new column.
Thanks for the help to everybody who wrote. 🙂
Check for Hidden Characters: Sometimes, extra spaces or hidden characters can cause what appears to be identical text to be treated as different. Ensure there are no trailing spaces or hidden characters in your data.
Normalize the Text: You can use the TRIM and CLEAN functions in DAX to remove any extra spaces or non-printable characters. For example:
NormalizedStatus = TRIM(CLEAN('4072 Hoved opgave'[Status]))
Combine Conditions: Instead of repeating the same output for multiple conditions, you can combine them into a single condition. This can help ensure consistency.
Best Regards
Saud Ansari
If this post helps, please Accept it as a Solution to help other members find it. I appreciate your Kudos!
Is the field on the slicer your calculated column? The same value appearing more than once in a slicer is possibly because the same value has multiple custom sort values which can be forced using Tabular Editor. If that isn't the case, then your scenario is an odd one. I would just modify the formula to this instead:
IF (
'4072 Hoved opgave'[Status] = "Planlagt/aktiv"
|| '4072 Hoved opgave'[Status] = "Afventer planlægning",
"Igangværende sager",
IF (
'4072 Hoved opgave'[Status] = "Afventer",
"Igangværende sager",
IF (
'4072 Hoved opgave'[Status] = "Retur",
"Igangværende sager",
IF (
'4072 Hoved opgave'[C_Sandsynlighed_19] = "Sikker",
"Sikre",
IF (
'4072 Hoved opgave'[C_Sandsynlighed_19] = "Mulig",
"Mulige",
'4072 Hoved opgave'[C_Sandsynlighed_19]
)
)
)
)
)
If this still doesn't work, I would wrap the whole formula with TRIM()
hi @ThomasWeppler ,
If you have created a calculated column with this dax and using that column in the slicer, It should work (. please share sample dataset to better understand.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 49 | |
| 33 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 85 | |
| 70 | |
| 38 | |
| 28 | |
| 25 |