Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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?
Solved! Go to Solution.
Column = IF(CALCULATE(MAX('Table'[Date]))=MAX('Table'[Date]),1)
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.
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 )
Column = IF(CALCULATE(MAX('Table'[Date]))=MAX('Table'[Date]),1)
Just FYI, if it's a calculated column, then you can use the raw column name and check if
'Table'[Date] = MAX ( 'Table'[Date] )
🙏 😀
Would you happen to know why I get a value of '2'?
I did this:
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 )
Check out the April 2026 Power BI update to learn about new features.
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.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |