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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Mitschl1986
Regular Visitor

use case sensitive to create a correct relationsship

Hi BI-Desktop experts,

i want to creat a relationsship between two tables. The problem is the programm says there are a duplicate in the table. Thats wrong! There are ID's in the colum: 'vQCZd01OIaAs0EC0001' and 'VQCZd01OIaAs0EC0001' these are diffent datarows. How can i aktivate a case sensitive?

 

 

 

let
    Quelle = Oracle.Database("egecko", [HierarchicalNavigation=true]),
    PM = Quelle{[Schema="PM"]}[Data],
    FIBU_BELEG1 = PM{[Name="FIBU_BELEG"]}[Data],
    #"Gefilterte Zeilen1" = Table.SelectRows(FIBU_BELEG1, each [ORGUNIT_NR] = 940)
in
    #"Gefilterte Zeilen1"
4 REPLIES 4
Anonymous
Not applicable

Dear @Mitschl1986,

 

In your table FIBU_BELEG, create new Column: "X_FIBU_BELEG_ID" = UPPER('FIBU_BELEG'[FIBU_BELEG_ID])

Then you can create new same formular the other table.

Go to Relationship, edit and change join between 2 table with new X_FIBU_BELEG_ID.

 

Regards,

ManNVSM.

<pre><span class="">This solution will cause data loss because identifiers must be case sensitive. I have the same problem, still no solution.</span></pre>

You can solve this in Power Query, which is case sensitive. Basically you need to group by name and add an index column which will serve as the ID and which you can then use to create the relationship.

Here is the way to do this:

index.gif

dimension table.pngmain table.pngmodel.png

Sample file attached





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Anonymous
Not applicable

HI @Mitschl1986,

 

Based on test, current relationship seems not case sensitive, you can refer to below link to know more about this:

Create a Dimension Table with Power Query: Avoid the case sensitivity bug!

Creating Case Sensitive Table Relationships

 

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors