Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
I need a DAX measure to return the string of the previous month. Example:
| ID | Date | Level |
| 101 | 10/20 | Staff |
| 101 | 11/20 | Manager |
So if the date selected in the slicer is 11/20, I need the measure to return "Staff"
@Anonymous , Create a date table and try measure like
previous month value = CALCULATE(max('Table'[Level]),previousmonth('Date'[Date]))
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.
@Anonymous Try this:
File is attached below my signature.
Measure =
VAR MaxDate =
CALCULATE ( MAX ( bela[Date] ), ALLSELECTED ( bela ) )
VAR Temp =
FILTER ( ALL ( bela ), bela[Date] < MaxDate )
VAR LastDateInTable =
MAXX ( Temp, bela[Date] )
VAR LevelAtLastDate =
CALCULATE (
CONCATENATEX ( DISTINCT ( bela[Level] ), bela[Level], ", " ) ,
bela[Date] = LastDateInTable,
REMOVEFILTERS ( bela )
)
RETURN
LevelAtLastDate
@AntrikshSharma Hello
If I tell you all the columns are in different tables (that are connected), what changes in the measure?
@Anonymous If you can attach a sample file then that would help in testing the code.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |