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
Hi there, I'm not sure how easy this is but I've been stumped on this for a while. How can I pull the time to only show 6AM to 7PM everyday? instead of it showing 3AM and 9AM. I would like to remove all the data overnight and only have the report show 6AM to 7PM each day.
Any help is appreciated. Thank you.
Solved! Go to Solution.
create a calculated column HOUR(timestamp) and then use that column to filter your visual.
Hi @imontoya14
You can also try to create measure as:
Measure =
CALCULATE(
MAX(Table[Megawatts],
FILTER(
Table,
HOUR([Time])>6 && HOUR([Time])<19 && HOUR([Time])<>7
)
)
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @imontoya14
You can also try to create measure as:
Measure =
CALCULATE(
MAX(Table[Megawatts],
FILTER(
Table,
HOUR([Time])>6 && HOUR([Time])<19 && HOUR([Time])<>7
)
)
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
create a calculated column HOUR(timestamp) and then use that column to filter your visual.
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 |
|---|---|
| 93 | |
| 81 | |
| 73 | |
| 46 | |
| 35 |