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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
natasha519
Helper II
Helper II

Create New Column for Latest Date

I have a date column (Jan 2015 - April 2021). How can I create a new column (NOT MEASURE) that will give me 1 for the latest date (e.g., April 2021) and if we get new data (May 2021), the 1 moves to May 2021?

3 ACCEPTED SOLUTIONS
smpa01
Super User
Super User

@natasha519 

Column = IF(CALCULATE(MAX('Table'[Date]))=MAX('Table'[Date]),1)
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

If you check your actual data table, you won't see a 2.

 

I'm guessing you used LatestDateCol as an implicit measure in a report visual and it automatically aggregated two rows of the table with the same date by adding up 1 for each row.

View solution in original post

Try this as a calculated column:

LatestDatePY =
VAR MaxDate = MAX ( Provisional_Data[Date] )
VAR MaxPriorYear = DATE ( YEAR ( MaxDate ) - 1, MONTH ( MaxDate ), DAY ( MaxDate ) )
RETURN
    IF ( Provisional_Data[Date] = MaxPriorYear, 1, 0 )

View solution in original post

7 REPLIES 7
smpa01
Super User
Super User

@natasha519 

Column = IF(CALCULATE(MAX('Table'[Date]))=MAX('Table'[Date]),1)
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Just FYI, if it's a calculated column, then you can use the raw column name and check if

'Table'[Date] = MAX ( 'Table'[Date] )

 

🙏 😀

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Would you happen to know why I get a value of '2'?

 

I did this: 

LatestDateCol = IF(CALCULATE(MAX(Provisional_Data[Date]))=MAX(Provisional_Data[Date]),1,0)

If you check your actual data table, you won't see a 2.

 

I'm guessing you used LatestDateCol as an implicit measure in a report visual and it automatically aggregated two rows of the table with the same date by adding up 1 for each row.

Got it! That's helpful. And if I wanted to create another column which now calculates 1 year minus the LatestDate, how would I go about that? I tried to reference the column I just created in the new column but got a circular dependency error.

Try this as a calculated column:

LatestDatePY =
VAR MaxDate = MAX ( Provisional_Data[Date] )
VAR MaxPriorYear = DATE ( YEAR ( MaxDate ) - 1, MONTH ( MaxDate ), DAY ( MaxDate ) )
RETURN
    IF ( Provisional_Data[Date] = MaxPriorYear, 1, 0 )

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors
Top Kudoed Authors