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
Ninna
Frequent Visitor

How to group data and connect them to date slicer from the initial data

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).

 

Ninna_1-1675778515454.png

 

Tnx. 

 

 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @Ninna 

you would need a range table like:

RangeMinMax
>150015019999
1000-150010011500
500-10005011000

0-500

0500

 

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:

FreemanZ_0-1675782325666.png

 

View solution in original post

2 REPLIES 2
Ninna
Frequent Visitor

That's it. Thank you 🙂

FreemanZ
Super User
Super User

hi @Ninna 

you would need a range table like:

RangeMinMax
>150015019999
1000-150010011500
500-10005011000

0-500

0500

 

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:

FreemanZ_0-1675782325666.png

 

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.

Top Solution Authors