Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
waleed55
Frequent Visitor

counting rows on the date column where the time > 5:30 pm

hi i want to counting rows on the date column where the time > 5:30 pm how can do that

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @waleed55 ,

 

Here are the steps you can follow:

1. Create measure.

Flag =
IF(
MAX('Table'[Column1]) >
 DATE(YEAR(MAX('Table'[Column1])),MONTH(MAX('Table'[Column1])),DAY(MAX('Table'[Column1]))) + TIME(17,30,0),1,0)
Count =
COUNTX(
ALLSELECTED('Table'),[Flag])

2. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_0-1693281018611.png

3. Result:

vyangliumsft_1-1693281018613.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

waleed55
Frequent Visitor

hi i don't want to create a new column i want to create measure only

 

Greg_Deckler
Super User
Super User

@waleed55 So maybe something like this:

Column 2 = 
    VAR __530 = 1/24/2 * ( 17.5 * 2 )
    VAR __Value = [Column]
    VAR __Result = IF( __Value >= __530, 1, 0)
RETURN
    __Result

Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.