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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Jordi
Advocate I
Advocate I

filter data by groups

Maybe it is an very obvious question, but I'm not sure how to search for it (in english) so I'll give it a try here.

 

I have a table with invoices with sales for a file (every file has an amount of sales).

File  invoiceid  Sales  Pax

1      1              1000    2

1      2                 500   2

2      3                 500   2

3      4                 500   1 

3      5                1000  1

4      6                1500   2

4      7                1000   2

 

What I want is an count of files grouped by the total sales amount:

Sales         #Files

0-1000           1

1000-2000     2

>2000            1

 

What is the best way to achieve this?

 

 

 

      

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

Thanks for the hint @Zubair_Muhammad

 

Added the Parameter table, and added a calculated column with this formula: (I want to count the Files within the parameters)

 

Category = 
VAR Sales =
SUM('Sales'[sales])
RETURN
CALCULATE (
DISTINCTCOUNT('Sales'[File] );
FILTER (
Parameters;
Sales >= Parameters[Start]
&& Sales < Parameters[End]
)
)

 

But that return the value "1"

 

Table "Parameters"Table "Parameters"

(Column "Index" is added for ordering purposes)

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.