Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi all,
I'm trying to do a count from a time column where i add up the number of visitors that arrived during a specified time period.
For example I want to capture the number of visits between 07:00 - 14:59, 15:00 - 22:50 and 23:00 - 06:59 however I can't use the countif formula like I can in excel. Does anyone know how I would accomplish this in PowerBI?
Thanks for any help. I've been stuck on this for a few days now..
Solved! Go to Solution.
it should work, once mistake in my formula whcih is fixed now
hour range = var x = hour(yourtable[yourdatetimecolumn]) return if(x >= 7 && x < 15, "07am-15pm", if(x >= 15 && x <= 23, "15pm-23pm", "00am-07am"))
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
add a new column something like below to get hour range and use this new column on x axis on your chart:
hour range = var x = hour(yourtable[yourdatetimecolumn]) return if(x > 7 && x < 15, "07am-15pm", if(x >= 15 && x <= 23, "15pm-23pm", "00am-07am"))
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
That's fantastic!! Thank you so much!! Is there any way to set it to 06:59 so I'm not capturing any entry at 07:00 twice ?
it should work, once mistake in my formula whcih is fixed now
hour range = var x = hour(yourtable[yourdatetimecolumn]) return if(x >= 7 && x < 15, "07am-15pm", if(x >= 15 && x <= 23, "15pm-23pm", "00am-07am"))
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Thank you so much. Means a lot.
Saved me a lot of headache.
@stephenroosno worries buddy, glad to hear it worked out, feel free to reach out any time.
cheers,
P
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
You could also use the 'groups' feature.
If you right click a text field and select 'New Group' you'll be able to select how the various text values are grouped.
However if you do the same with a numeric field, you can set up 'bins' which can be set to intervals, or automatically calculated intervals based on the number of bins you want. This works for time periods too.
Since you want your 8-hour bins to be offset from midnight, you might need to start with auto-calculated 1-hour bins, then manually group THOSE BINS, with 00:00-01:00 to 06:00-07:00 as well as 23:00-00:00 being in the same group, and splitting the rest between two other groups.
You should end up with 3 groups of 8 bins each - hope that's not too confusing! I would have added screenshots but not sure how to...
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 23 |