- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Power BI DAX Measure - Summarize Across multiple Dimensions and Facts.
Hi everyone, hope you're well.
I have a general question regarding the best way to write a Power BI DAX mesure in a specific set of cases. I've been looking around online and can't quite find a solution to my problem.
Say that we have a hypothetical Star schema as per the image below with 3 dimensions for a hypothetical retail company.
The retail company sells Items (SKUs) through its Stores (Locations).
Therefore we have 3 dimensions: Date, SKU and Location.
We also have 2 facts: Daily Opening Inventory (Fact_Inventory), and Daily Minimum Required Stock (Fact_Inventory_Req).
All relationships are One-Directional, One-to-Many.
I want to write a measure which counts the number of occurences where an Item in a Store had an Inventory Level below the Required Safety Stock (each day). I am struggling to find the best and most optimal way to write such a measure.
At first glance, I would use SUMMARIZECOLUMNS, however it turns out that this cannot be used in Power BI measures.
Therefore, currently my solution is to write something as per below:
Measure =
VAR SummarizedTable =
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Simeon
Interesting scenario, and you have hit on some good ideas
If the two fact tables are aggregated to the same grain (e.g. Date/Location/SKU) you could indeed precompute the result for each row as a binary value and sum that. However it sounds like this is not always the case.
To answer your specific questions:
- To more optimally write such a measure that has to iterate over combinations of dimensions, I would generally use SUMMARIZE to group the fact table by the required dimensions (rather than CROSSJOIN), then iterate over the result. SUMMARIZE produces these comabinations very efficiently with the storage engine. Also, I would not suggest using SUMMARIZE to create extension columns (see this article).
- Your star schema looks logical and correct to me!
- Last I checked, SUMMARIZECOLUMNS cannot generally be used in measures (in particular within iterators) but it has been suggested that this is going to change (see this video featuring Jeffrey Wang).
Here is how I would suggest writing the measure, based on what you've posted, including two measures for the inventory sums that I would create for readability.
Oh, I have assumed that you would only count combinations that exist in 'Fact_Inventory_Req' - is this a correct assumption or not? If not, some adjustments would be needed.
Opening Inventory Sum =
SUM ( 'Fact_Inventory'[Opening Inventory] )
Required Inventory Sum =
SUM ( 'Fact_Inventory_Req'[Inventory_Qty_Rec] )
Measure =
-- Combinations of Date/SKU/Location existing in Fact_Inventory_Req
VAR SummarizedTable =
SUMMARIZE (
'Fact_Inventory_Req',
'Dim_Date'[Date],
'Dim_SKU'[SKU Key],
'Dim_Location'[Location Key]
)
VAR Result =
SUMX (
SummarizedTable,
IF ( [Opening Inventory Sum] > [Required Inventory Sum], 1 )
)
RETURN
Result
Interested in whether this is an improvement or not. It may depend on how sparse combinations in your fact tables are.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Glad that was some help 🙂
For the multi-fact version, I would go with this pattern:
DISTINCT (
UNION (
SUMMARIZE (
'Fact_Inventory_Req',
'Dim_Date'[Date],
'Dim_SKU'[SKU Key],
'Dim_Location'[Location Key]
),
SUMMARIZE (
'Fact_Inventory',
'Dim_Date'[Date],
'Dim_SKU'[SKU Key],
'Dim_Location'[Location Key]
)
)
)
It will be easier when SUMMARIZECOLUMNS is (reliably) available for use in measures.
All the best!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Glad that was some help 🙂
For the multi-fact version, I would go with this pattern:
DISTINCT (
UNION (
SUMMARIZE (
'Fact_Inventory_Req',
'Dim_Date'[Date],
'Dim_SKU'[SKU Key],
'Dim_Location'[Location Key]
),
SUMMARIZE (
'Fact_Inventory',
'Dim_Date'[Date],
'Dim_SKU'[SKU Key],
'Dim_Location'[Location Key]
)
)
)
It will be easier when SUMMARIZECOLUMNS is (reliably) available for use in measures.
All the best!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thank you for this solution, I had a similar problem and this answered my problem perfectly. This solution taught me a lot as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hey @OwenAuger ,
Thanks for this, your solution has gotten me close but not all the way there. While it's working on the Product Level (Totals correct on Matrix, each row correct) it's not working on the Plant level (Totals correct in Matrix, however each row is no longer correct). If I add Calendar into the mix, then both become incorrect.
Here's my query for reference:
VAR SummarizedTable =
DISTINCT (
UNION (
SUMMARIZE (
'PLANNED ORDER SCHEDULE',
'PLANT'[PLANT],
'PRODUCT'[PRODUCT_ID]
),
SUMMARIZE (
'ORDER ITEM CONFIRMATIONS',
PLANT[PLANT],
'PRODUCT'[PRODUCT_ID]
)
)
)
VAR Result =
SUMX (
SummarizedTable,
ABS( CALCULATE( [Planned Order Schedule QTY] - [Produced QTY] ) )
)
RETURN
Result
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Could you provide more detail on your model, and ideally a sample PBIX, with an example of the visuals where you are applying this measure?
A model diagram and definitions of the two measures Planned Order Schedule QTY and Produced QTY, plus the expected measure results would be useful.
Regards,
Owen 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi Owen,
I really cannot thank you enough for this!! I've been struggling for a full day with virtually the same scenario - a measure using inputs from 2 fact tables linked to the same two dimension tables - and your solution worked like a charm.
Thank-you so much (and thanks also to Simeon for posting the question in the first place!)
😊
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Ah yes, the Union makes sense. Indeed, Looking forward to getting SUMMARIZECOLUMNS.
Thanks a lot for your help! 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Simeon
Interesting scenario, and you have hit on some good ideas
If the two fact tables are aggregated to the same grain (e.g. Date/Location/SKU) you could indeed precompute the result for each row as a binary value and sum that. However it sounds like this is not always the case.
To answer your specific questions:
- To more optimally write such a measure that has to iterate over combinations of dimensions, I would generally use SUMMARIZE to group the fact table by the required dimensions (rather than CROSSJOIN), then iterate over the result. SUMMARIZE produces these comabinations very efficiently with the storage engine. Also, I would not suggest using SUMMARIZE to create extension columns (see this article).
- Your star schema looks logical and correct to me!
- Last I checked, SUMMARIZECOLUMNS cannot generally be used in measures (in particular within iterators) but it has been suggested that this is going to change (see this video featuring Jeffrey Wang).
Here is how I would suggest writing the measure, based on what you've posted, including two measures for the inventory sums that I would create for readability.
Oh, I have assumed that you would only count combinations that exist in 'Fact_Inventory_Req' - is this a correct assumption or not? If not, some adjustments would be needed.
Opening Inventory Sum =
SUM ( 'Fact_Inventory'[Opening Inventory] )
Required Inventory Sum =
SUM ( 'Fact_Inventory_Req'[Inventory_Qty_Rec] )
Measure =
-- Combinations of Date/SKU/Location existing in Fact_Inventory_Req
VAR SummarizedTable =
SUMMARIZE (
'Fact_Inventory_Req',
'Dim_Date'[Date],
'Dim_SKU'[SKU Key],
'Dim_Location'[Location Key]
)
VAR Result =
SUMX (
SummarizedTable,
IF ( [Opening Inventory Sum] > [Required Inventory Sum], 1 )
)
RETURN
Result
Interested in whether this is an improvement or not. It may depend on how sparse combinations in your fact tables are.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Owen , thanks for replying to quickly!
Yes, it's much faster indeed! I didn't realise that in SUMMARIZE the "Group By" columns could come from other tables - I (wrongly) assumed that it could only summarize the selected table (in the first parameter).
Actually now that you mention it, there are a few cases where the combinations from multiple fact tables need to be considered. Could you please show me the required adjustments? Let me know if I should write a new thread for it.
Much appreciated 🙂

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
03-10-2023 09:43 AM | |||
10-24-2023 11:50 PM | |||
11-21-2022 07:02 AM | |||
03-18-2024 11:33 PM | |||
06-26-2023 08:58 PM |
User | Count |
---|---|
141 | |
115 | |
84 | |
63 | |
47 |