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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
RsimonAlign
Helper I
Helper I

Calculate a previous level missing

Hi ,

Need help to calculate "missing rows".

 

I have a table :

RegionCountryProductWeekQuantity
APACAustraliaX110
APACAustraliaY112
APACAustraliaZ132
APACJapanX17
APACHong KongX14
APACHong KongY113
APACHong KongZ115

 

The goal is to add missing rows for each country,product,week.

in the example i need to add rows for country Japan the missing products (Y,Z)

The quantity will be summerize quantity of Region by product,week

 

RegionCountryProductWeekQuantity
APACAustraliaX1.10
APACAustraliaY112
APACAustraliaZ132
APACJapanX17
APACJapanY125 (12 + 13)
APACJapanZ147 (32+15)

 

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @RsimonAlign 

 

Try this code to add a new table:

calctables_formulabarempty

New Table = 
VAR _A =
    SUMMARIZE ( 'Table', 'Table'[Region], 'Table'[Country], 'Table'[Week] )
VAR _B =
    VALUES ( 'Table'[Product] )
VAR _C =
    CROSSJOIN ( _A, _B )
RETURN
    ADDCOLUMNS (
        _C,
        "Quantity",
            IF (
                CALCULATE (
                    MAX ( 'Table'[Quantity] ),
                    FILTER (
                        ALL ( 'Table' ),
                        'Table'[Country] = EARLIER ( [Country] )
                            && 'Table'[Week] = EARLIER ( [Week] )
                            && 'Table'[Product] = EARLIER ( [Product] )
                    )
                )
                    <> BLANK (),
                CALCULATE (
                    MAX ( 'Table'[Quantity] ),
                    FILTER (
                        ALL ( 'Table' ),
                        'Table'[Country] = EARLIER ( [Country] )
                            && 'Table'[Week] = EARLIER ( [Week] )
                            && 'Table'[Product] = EARLIER ( [Product] )
                    )
                ),
                CALCULATE (
                    SUM ( 'Table'[Quantity] ),
                    FILTER (
                        ALL ( 'Table' ),
                        'Table'[Week] = EARLIER ( [Week] )
                            && 'Table'[Product] = EARLIER ( [Product] )
                    )
                )
            )
    )

 

Output:

VahidDM_0-1643066388825.png

 

 

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

View solution in original post

1 REPLY 1
VahidDM
Super User
Super User

Hi @RsimonAlign 

 

Try this code to add a new table:

calctables_formulabarempty

New Table = 
VAR _A =
    SUMMARIZE ( 'Table', 'Table'[Region], 'Table'[Country], 'Table'[Week] )
VAR _B =
    VALUES ( 'Table'[Product] )
VAR _C =
    CROSSJOIN ( _A, _B )
RETURN
    ADDCOLUMNS (
        _C,
        "Quantity",
            IF (
                CALCULATE (
                    MAX ( 'Table'[Quantity] ),
                    FILTER (
                        ALL ( 'Table' ),
                        'Table'[Country] = EARLIER ( [Country] )
                            && 'Table'[Week] = EARLIER ( [Week] )
                            && 'Table'[Product] = EARLIER ( [Product] )
                    )
                )
                    <> BLANK (),
                CALCULATE (
                    MAX ( 'Table'[Quantity] ),
                    FILTER (
                        ALL ( 'Table' ),
                        'Table'[Country] = EARLIER ( [Country] )
                            && 'Table'[Week] = EARLIER ( [Week] )
                            && 'Table'[Product] = EARLIER ( [Product] )
                    )
                ),
                CALCULATE (
                    SUM ( 'Table'[Quantity] ),
                    FILTER (
                        ALL ( 'Table' ),
                        'Table'[Week] = EARLIER ( [Week] )
                            && 'Table'[Product] = EARLIER ( [Product] )
                    )
                )
            )
    )

 

Output:

VahidDM_0-1643066388825.png

 

 

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.