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
peterhui50
Helper III
Helper III

SUMMARIZECOLUMNS return all columns in Table_1

I have two tables. They are both joined via the column "Store" and it's a 1:Many relationship.

 

1 being Table_1 and many being Table_2

 

Table_1

peterhui50_0-1627675912512.png

 

Table_2

peterhui50_1-1627675946931.png

 

I wrote 

 

 

SUMMARIZECOLUMNS(
    Table_1[Store],
    Table_1[Region],
    Table_2[Sales],
    "Totals",SUM(Table_2[Sales]))

 

 

 

but the result I want is this.

 

peterhui50_2-1627676464773.png

 

 

I have tried using the IGNORE() function but it returns not the correct results.

 

Any help would be appreciated!

 

Peter

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Using the Sales column as a dimension is a bit odd, IMO.

 

I'd suggest this if you want zeros:

SUMMARIZECOLUMNS(
    Table_1[Store],
    Table_1[Region],
    "Totals", SUM(Table_2[Sales]) + 0
)

AlexisOlson_0-1627678137448.png

 

Or this if you want blanks instead of zeros:

Test =
SUMMARIZECOLUMNS (
    Table_1[Store],
    Table_1[Region],
    "Totals", IGNORE ( SUM ( Table_2[Sales] ) )
)

 

View solution in original post

3 REPLIES 3
AlexisOlson
Super User
Super User

Using the Sales column as a dimension is a bit odd, IMO.

 

I'd suggest this if you want zeros:

SUMMARIZECOLUMNS(
    Table_1[Store],
    Table_1[Region],
    "Totals", SUM(Table_2[Sales]) + 0
)

AlexisOlson_0-1627678137448.png

 

Or this if you want blanks instead of zeros:

Test =
SUMMARIZECOLUMNS (
    Table_1[Store],
    Table_1[Region],
    "Totals", IGNORE ( SUM ( Table_2[Sales] ) )
)

 

Thanks Alexis!

 

 

Anonymous
Not applicable

Hi @peterhui50 ,

 

You can write the code like this in order to get Store and Regions with no sales:

 

SUMMARIZECOLUMNS(
            Table_1[Store],
            Table_1[Region],
            "Totals", IF( ISBLANK(SUM(Table_2[Sales])) , 0 , SUM(Table_2[Sales]) )
)

 

 

Jesus.

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.