Forum Discussion

robertozsr's avatar
robertozsr
Helper II
6 months ago
Solved

One Semantic model VS Multiple Semantic Models

Hello everyone,

 

I have several clients (in the same domain) to which we provide dashboards. While I am realizing all the analytics inside Fabric, a doubt arise. Should 1 model for all clients, and then have row level security, or for each client a semantic model?

the structure is the following:

Source data land into fabric, and are processed using a medallion architecture (bronze, silver and gold). Once reached the gold layer.
There are two level of data: 
   - Data that all clients have (contextual data) (for this is enogh filtering per client id just to have the data for that client)

   - And client specific Data (different business rules, metrics etc)

I was trying to have one semantic model for all clients, but it seems that it add so much complexity, relationship etc
The reason why, we want one semantic model because it seems easier to maintain in terms of measures etc

But I do think it is better having indiviudal semantic models per each client, because I see the gain in easue of use, perfromance (less relationship etc) even if we lose a bit on resuability

Then, we want to create a standard dashboard that will have the same kpis for each client (but with the logic above), and even in that case I do believe to have separate semantic models.

I am a junior, so that is why I am asking, I am sure I will receive help from much more experienced ppl

Thanks.

  • Hi robertozsr ,

     

    This is a very common design question, and there’s no single “always right” answer — it depends on how similar your clients really are.

    If all clients share the same business logic, KPIs, and relationships, then a single semantic model with RLS can work well.

    However, in your case you mention client-specific rules, metrics, and calculations. Once that happens, a single model usually becomes very complex: lots of conditional DAX, inactive relationships, heavy RLS, and harder performance tuning.

    In practice, a separate semantic model per client is often the better choice:

    Simpler DAX and relationships

    Better performance (smaller, cleaner models)

    Easier testing and troubleshooting

    Safer changes (one client’s change doesn’t impact others)

    Reusability doesn’t have to be lost — it’s best handled at the Gold layer (shared tables) and via model / DAX templates and naming conventions, rather than forcing everything into one model.

    For standard dashboards, you can still reuse the same report layout and KPIs by binding the same report template to each client’s semantic model.

    In short:
    same logic → one model + RLS
    different logic → multiple semantic models

     

     

    If this post helps, then please appreciate giving a Kudos or accepting as a Solution to help the other members find it more quickly.
    If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

6 Replies

  • Hi robertozsr ,

     

    This is a very common design question, and there’s no single “always right” answer — it depends on how similar your clients really are.

    If all clients share the same business logic, KPIs, and relationships, then a single semantic model with RLS can work well.

    However, in your case you mention client-specific rules, metrics, and calculations. Once that happens, a single model usually becomes very complex: lots of conditional DAX, inactive relationships, heavy RLS, and harder performance tuning.

    In practice, a separate semantic model per client is often the better choice:

    Simpler DAX and relationships

    Better performance (smaller, cleaner models)

    Easier testing and troubleshooting

    Safer changes (one client’s change doesn’t impact others)

    Reusability doesn’t have to be lost — it’s best handled at the Gold layer (shared tables) and via model / DAX templates and naming conventions, rather than forcing everything into one model.

    For standard dashboards, you can still reuse the same report layout and KPIs by binding the same report template to each client’s semantic model.

    In short:
    same logic → one model + RLS
    different logic → multiple semantic models

     

     

    If this post helps, then please appreciate giving a Kudos or accepting as a Solution to help the other members find it more quickly.
    If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    • robertozsr's avatar
      robertozsr
      Helper II

      Hello, thanks for the clear answer.

      Can you expand a bit more on this two points:

      - Reusability doesn’t have to be lost — it’s best handled at the Gold layer (shared tables) and via model / DAX templates and naming conventions, rather than forcing everything into one model.

      I can create a DAX template and reause?

       

      - For standard dashboards, you can still reuse the same report layout and KPIs by binding the same report template to each client’s semantic model.

      It is possible to create a standard report, in terms of visuals etc? this means once the first one is created, I just basically have to copy-paste the report and attach to a different semantic model?
      thanks!

  • The least number of semantic models, the less strain on resources. Also, the less places  change has to be implemented.

     

    Always strive for one model and multiple reports/dashboards off that one model.

  • Hello robertozsr 

     

    You could consider a hybrid approach, where client-agnostic data is kept in a core semantic model with base facts and conformed dimensions, while client-specific thin semantic models hold client-specific measures. This architecture supports easier maintenance and offers extensibility in design.

     

     

    • robertozsr's avatar
      robertozsr
      Helper II

      Hello,

      and it will be possible to attach two different semantic model to one report?