Forum Discussion

sgodfrey's avatar
sgodfrey
Frequent Visitor
7 years ago
Solved

compare a date field to a defined date

Hi,

 

I'm trying to count the number of rows where a certain date/time field has been met according to a statically defined date in DAX as the visual filter will not work with the particular viz I require.  Both the date and the time of that particular day need to be met, and it doesn't appear to be evaluating the date/time properly, as when the date/time portion of the filter are removed, all else returns fine.  passwordChange has Data Type set to Date/Time.  For example, I have tried the following without success:

 

PWDGT06152018_Enabled = CALCULATE (
    DISTINCTCOUNT(Table[acctname]), FILTER ('Table', 'Table'[AcctType]="Value" && 'Table'[EnabledDisabled]="Enabled" && 'Table'[passwordChange].[Date] >= 6/15/2018 2:30 PM))

 

 

PWDGT06152018_Enabled = CALCULATE (
    DISTINCTCOUNT(Table[acctname]), FILTER ('Table', 'Table'[AcctType]="Value" && 'Table'[EnabledDisabled]="Enabled" && 'Table'[passwordChange].[Date] >= 20180615143000 ))

 

Thanks!

 

 

  • sgodfrey's avatar
    sgodfrey
    7 years ago

    Thanks, still double-checking the results and math, but its definitely evaluating both the date and the time now!  :)

3 Replies

  • SteveCampbell's avatar
    SteveCampbell
    Icon for Memorable Member rankMemorable Member

    Hello,

     

    Usually, it is good to use DATE() and TIME() functions for comparison.

     

    Can you try:

    PWDGT06152018_Enabled =
    CALCULATE (
        DISTINCTCOUNT ( Table[acctname] ),
        FILTER (
            'Table',
            'Table'[AcctType] = "Value"
                && 'Table'[EnabledDisabled] = "Enabled"
                && 'Table'[passwordChange].[Date]
                    >= DATE ( 2018, 06, 15 ) + TIME ( 14, 30, 0 )
        )
    )
    • sgodfrey's avatar
      sgodfrey
      Frequent Visitor

      Thanks, still double-checking the results and math, but its definitely evaluating both the date and the time now!  :)

  • v-piga-msft's avatar
    v-piga-msft
    Icon for Resident Rockstar rankResident Rockstar

    Hi sgodfrey,

     

    Have you solved your problem?

     

    If you have solved, please accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

     

    If you still need help, please share some data sample and your desired output so that we could help further on it.

     

    Best Regards,

    Cherry