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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

String of previous month

Hi

 

I need a DAX measure to return the string of the previous month. Example:

 

IDDateLevel
10110/20Staff
10111/20Manager


So if the date selected in the slicer is 11/20, I need the measure to return "Staff"

6 REPLIES 6
amitchandak
Super User
Super User

@Anonymous , do you have dates or month only. can share a better sample

amitchandak
Super User
Super User

@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
Not applicable

@amitchandak Did not work, it gives me the current level

belaberger_0-1606138565800.png

 

AntrikshSharma
Community Champion
Community Champion

@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

1.png

 

Anonymous
Not applicable

@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.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.

Top Solution Authors