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
LautaroAA
Regular Visitor

Sum values by category and between hours of day.

Hello, i have a table with 3 columns: "key", "value" and "timestamp" 

7530fd74d322a0a16cc96fd1faed1109.png

and i need to sum all the values of key "16" between 1 PM and 2 PM, then 2 PM and 3 PM and so on.
Hope someone can help me with this, thanks in advance.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@LautaroAA 

 

Create a column that will only hold the [Bracket]s ("1PM-2PM", "2PM-3PM",...) and then create another table with a simple formula:

 

[Table] =
SUMMARIZECOLUMNS(
    T[Bracket],
    treatas(
        {"16"},
        T[key]
    ),
    "Count", SUM( T[value] )
)

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@LautaroAA 

 

Create a column that will only hold the [Bracket]s ("1PM-2PM", "2PM-3PM",...) and then create another table with a simple formula:

 

[Table] =
SUMMARIZECOLUMNS(
    T[Bracket],
    treatas(
        {"16"},
        T[key]
    ),
    "Count", SUM( T[value] )
)

Thank you!

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