Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi everyone,
I need some help.
I have a sales table by date, customer, ect. I need to create group (range) based on the sum of sales for customers and campaigns.
The problem is that I dont't know how to connect the table by ranges to timline based od date in my data.
Here is the example of what I need. I have the table on the left and I need to get the report looking like the table on the right(that needs to be sensitive on timeline).
Tnx.
Solved! Go to Solution.
hi @Ninna
you would need a range table like:
Range | Min | Max |
>1500 | 1501 | 9999 |
1000-1500 | 1001 | 1500 |
500-1000 | 501 | 1000 |
0-500 | 0 | 500 |
then plot the Range[Range] column with two measures like:
No of Customers =
VAR _table =
ADDCOLUMNS(
SUMMARIZE(
Sales,
Sales[Customer],
Sales[Campaign]
),
"Sales",
CALCULATE(SUM(Sales[Sales]))
)
VAR _list =
CALCULATETABLE(
SUMMARIZE(Sales, Sales[Customer], Sales[Campaign]),
FILTER(_table, [Sales]>=MIN(Range[Min])&&[Sales]<=MAX(Range[MAX]))
)
RETURN
COUNTROWS(_list)
Total Sales =
VAR _table =
ADDCOLUMNS(
SUMMARIZE(
Sales,
Sales[Customer],
Sales[Campaign]
),
"Sales",
CALCULATE(SUM(Sales[Sales]))
)
RETURN
CALCULATE(
SUM(Sales[Sales]),
FILTER(_table, [Sales]>=MIN(Range[Min])&&[Sales]<=MAX(Range[MAX]))
)
it worked like:
That's it. Thank you 🙂
hi @Ninna
you would need a range table like:
Range | Min | Max |
>1500 | 1501 | 9999 |
1000-1500 | 1001 | 1500 |
500-1000 | 501 | 1000 |
0-500 | 0 | 500 |
then plot the Range[Range] column with two measures like:
No of Customers =
VAR _table =
ADDCOLUMNS(
SUMMARIZE(
Sales,
Sales[Customer],
Sales[Campaign]
),
"Sales",
CALCULATE(SUM(Sales[Sales]))
)
VAR _list =
CALCULATETABLE(
SUMMARIZE(Sales, Sales[Customer], Sales[Campaign]),
FILTER(_table, [Sales]>=MIN(Range[Min])&&[Sales]<=MAX(Range[MAX]))
)
RETURN
COUNTROWS(_list)
Total Sales =
VAR _table =
ADDCOLUMNS(
SUMMARIZE(
Sales,
Sales[Customer],
Sales[Campaign]
),
"Sales",
CALCULATE(SUM(Sales[Sales]))
)
RETURN
CALCULATE(
SUM(Sales[Sales]),
FILTER(_table, [Sales]>=MIN(Range[Min])&&[Sales]<=MAX(Range[MAX]))
)
it worked like:
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
15 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
22 | |
11 | |
10 | |
10 | |
8 |