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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
fabiocesarei
Advocate I
Advocate I

2 filter on summarize table

Hi ,
I want to create a table by summerize function, but I need to insert two filter conditions
(I need to filter the data by year and by an " X " field of the data set), is it possible?

2 REPLIES 2
AlexChen
Microsoft Employee
Microsoft Employee

Hi,

 

I advise you to use “SummarizeColumns” function to do it.

 

Now I assume you have a table called “prod” like below.

 

1.png

 

You can create a table use the following code.

The products that are created before 2010 and amount value that are less that 2000 are filtered.

 

Table = SUMMARIZECOLUMNS(

                                      prod[product],

                                      filter(prod, year(prod[createdDate]) > 2010 && prod[amount] >= 2000),

                                      "amt", sum(prod[amount])

                                      )

 

2.png

 

Best Regards

Alex

 

 

Hi Alex, thank for reply. Filter is supported in summarize, I have used this example SUMMARIZE(FILTER('Time';'Time'[year]=2015);'Time'[quarter]; "CostQtr";SUM('Fact_costs'[.......
and it worked.
perhaps power bi converts the function.
I have to use 2 fields of different tables in filter function, do I have to create a previous table with a filter option and the second field as column and use it as filter in the final one?

Thanks

Fabio

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.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors