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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Kristofferaabo
Helper IV
Helper IV

Cant connect my summarize table to another table (its says duplicates)

Hi
I have made a SUMMARIZE table based on a large data set. Main purpose of doing this was to get a table with unique values for the 'project' which i could then connect to another table..

My problem is that I can't connect this to another project table, it tells me that 'Project'  doesn't contain unique values...

 

What do I do wrong? I thiough SUMMARIZE was giving uniques..?

Cheers

Kristoffer

New table = 
SUMMARIZE(
    'Old table',
    'Old Table'[Project],
    "Payments", count('Old table'[Payments]))
1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Kristofferaabo,

 

There could be blank values. Please try out the following formula. But you will lose the blank values.

New table =
FILTER (
    SUMMARIZE (
        'Old table',
        'Old Table'[Project],
        "Payments", COUNT ( 'Old table'[Payments] )
    ),
    ISBLANK ( 'Old Table'[Project] ) = FALSE ()
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Kristofferaabo,

 

There could be blank values. Please try out the following formula. But you will lose the blank values.

New table =
FILTER (
    SUMMARIZE (
        'Old table',
        'Old Table'[Project],
        "Payments", COUNT ( 'Old table'[Payments] )
    ),
    ISBLANK ( 'Old Table'[Project] ) = FALSE ()
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-jiascu-msft you are a genious!

 

Vh

Kristoffer

Hi @v-jiascu-msft,

 

This works BUT I still have a problem I didn't thought about.  I would need these Payments by country

 

If I pull countries in will make a *project' for each country, and I will obviously not be able to link.. can I somehow do this differently?

Can I write this and get:
Unique projects (with balnks) and get counts on payments by country?

 

New table =
FILTER (
    SUMMARIZE (
        'Old table',
        'Old Table'[Project],
'Old Table'[Country], "Payments", COUNT ( 'Old table'[Payments] ) ), ISBLANK ( 'Old Table'[Project] ) = FALSE () )

 

Hi Kristoffer,

 

That would depend on your data. If one country has one project, you can get the desired result. I would suggest you open a new thread in this forum and provide a sample of your data.

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors