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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Only give me last reading of each day. with output of true or false

 
2 ACCEPTED SOLUTIONS
BekahLoSurdo
Resolver IV
Resolver IV

Hi @Anonymous,

 

Would this work?

 

First, I created a summary column for "Date" to help the aggregation:

Date = FORMAT( 'Table'[Timestamp],"mm/dd/yyyy" )

Then I created your desired binary column:

IsLatest = IF( CALCULATE( MAX( Table[Timestamp] ), ALLEXCEPT (Table, Table[ID], Table[Date] )) = Table[Timestamp], "True", "False" )

GroupDate.PNG

View solution in original post

AlB
Super User
Super User

Hi @Anonymous 

Try this for your calculated column:

 

NewCol =
VAR LastInDay_ =
    CALCULATE (
        MAX ( Table1[Timestamp] ),
        INT ( Table1[Timestamp] ) = INT ( EARLIER ( Table1[Timestamp] ) ),
        ALLEXCEPT ( Table1, Table1[ID] )
    )
RETURN
    IF ( Table1[Timestamp] = LastInDay_, TRUE(), FALSE() )

 

View solution in original post

3 REPLIES 3
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

Have you solved your problem with the suggestions of AlB and BekahLoSurdo ?

If you have solved, please always 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 which could reproduce your scenario and your desired output so that we could help further on it.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
AlB
Super User
Super User

Hi @Anonymous 

Try this for your calculated column:

 

NewCol =
VAR LastInDay_ =
    CALCULATE (
        MAX ( Table1[Timestamp] ),
        INT ( Table1[Timestamp] ) = INT ( EARLIER ( Table1[Timestamp] ) ),
        ALLEXCEPT ( Table1, Table1[ID] )
    )
RETURN
    IF ( Table1[Timestamp] = LastInDay_, TRUE(), FALSE() )

 

BekahLoSurdo
Resolver IV
Resolver IV

Hi @Anonymous,

 

Would this work?

 

First, I created a summary column for "Date" to help the aggregation:

Date = FORMAT( 'Table'[Timestamp],"mm/dd/yyyy" )

Then I created your desired binary column:

IsLatest = IF( CALCULATE( MAX( Table[Timestamp] ), ALLEXCEPT (Table, Table[ID], Table[Date] )) = Table[Timestamp], "True", "False" )

GroupDate.PNG

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.