Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello, i have a table with 3 columns: "key", "value" and "timestamp"
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.
Solved! Go to Solution.
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] )
)
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!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 17 | |
| 14 | |
| 13 |