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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ReadTheIron
Helper III
Helper III

Data model design - many to many relationship?

Hello! This is more of a big-picture question. I have the chance to design how data is entered for a report, and I want to make it as robust and simple to work with as possible.

 

I have two tables: RepairTable and FailureTable. The FailureTable records every time any asset fails. The RepairTable is a list of selected problem assets (generated manually) and the dates they're inspected and repaired. I had these tables set up in a one-to-many relationship (RepairTable to FailureTable), and could use that to answer questions like "How many times has Q1-701 failed in the last year?" or "Has Q1-703 failed after its repair date"?

ReadTheIron_0-1643053619032.png

 

Now we want to go into a second repair cycle, and we've identified a new list of problem assets to inspect and repair. But what do we do about assets that appear on the first as well as the second list?

 

We could retire the first list altogether and just operate off the new list. All of the existing visuals would continue to work. However, I would then have no way to answer questions like "How many times has Q1-702 been repaired"?

ReadTheIron_1-1643054069865.png

We could add the new list to the same table as the old list and add a field to show which cycle an asset belongs to. However, this would break the one-to-many relationship with FailureTable. I don't know if the report can be made to work with a many-to-many relationship or not.

ReadTheIron_2-1643054327694.png

 

Are there other options I'm not thinking of? I would love to be able to toggle the report between "current list" and "all time" to answer questions like "which assets failed after being repaired" and "which assets failed in the last week".

 

 

1 ACCEPTED SOLUTION

Just thinking it through I might go further than this.

  • Have 1 table which is a list of all distinct assets and include a column to flag problem assets.
  • Comine your existing tables into a single fact table with: 

Date, AssetName, EventType

 

Where EventType is one of, Inspected, Repaired, Failed.

  • Finally have a date table which contains columns flagging repair cycle.

Thay should then be very flexible.



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

View solution in original post

5 REPLIES 5
ReadTheIron
Helper III
Helper III

Thanks! I ended up making the distinct asset table in DAX since I'm still shaky in PowerQuery, but it's working very nicely so far.

ReadTheIron
Helper III
Helper III

Thanks! This direction makes sense. What would be the advantages of using DAX over Power Query or vice versa? (For what it's worth, I have multiple RepairTables for different asset classes.)

So in import mode there is no difference in the compression/performance of a table calculated in DAX and a table calculated in Power Query. That said conventional wisdom is to push as ETL steps as close to source as feasibly possible so I would tend to lean towards Power Query. (Note that calculated columns are not compressed as well as none calculated columns). If you go Power Query it also lets you separate the logic out into a dataflow which tends to make things more scalable.

 

In terms of multiple Repair Tables I would also merge it all into one and have a dimension that describes Asset Classes.

 

 



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
bcdobbs
Super User
Super User

I think I would create an Asset dimension which is just a distinct list of all assets. Can do it in PowerQuery or straight in DAX with a calculated table:

DISTINCT (
	UNION (
		DISTINCT ( RepairTable[AssestName] ),
		DISTINCT ( FailureTable[AssetName] )
		)
)

 

That can then have a 1 to many relationship to both your tables.

 

If you then had a custom date table which had a column that indicated repair cycle you could filter any way you need.

If you wanted to supply a set of data for each table I could try and mock it up if you needed more help.



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

Just thinking it through I might go further than this.

  • Have 1 table which is a list of all distinct assets and include a column to flag problem assets.
  • Comine your existing tables into a single fact table with: 

Date, AssetName, EventType

 

Where EventType is one of, Inspected, Repaired, Failed.

  • Finally have a date table which contains columns flagging repair cycle.

Thay should then be very flexible.



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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