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
Dmoreira
Frequent Visitor

Previous Month Showing Blank

Hi! I am new to dax and I can't figure out why neither of this measures are working. 

First measure:

PM Line_amt v2 = CALCULATE([Line_amt],PREVIOUSMONTH('Date'[Date]))

Second measure:

PM line_amt = 
SUMX (
    VALUES ( 'Date'[Calendar YearMonthNumber] ),
    VAR OffsetMonths = 1
    VAR MonthDays =
        CALCULATE ( VALUES ( 'Date'[Calendar MonthDays] ) )
    VAR SelectedDays =
        CALCULATE ( DISTINCTCOUNT ( 'Date'[Date] ) )
    VAR PreviousMonthNumber = 'Date'[Calendar YearMonthNumber] - OffsetMonths
    VAR PreviousMonthFull =
        CALCULATE (
            [Line_amt],
            'Date'[Calendar YearMonthNumber] = PreviousMonthNumber,
            ALL ( 'Date' )
        )
    VAR DaysInMonthSelected =
        CALCULATETABLE ( VALUES ( 'Date'[Calendar DayOfMonthNumber] ) )
    VAR PreviousMonthPartial =
        CALCULATE (
            [Line_amt],
            'Date'[Calendar YearMonthNumber] = PreviousMonthNumber,
            DaysInMonthSelected,
            ALL ( 'Date' )
        )
    RETURN
        IF ( MonthDays = SelectedDays, PreviousMonthFull, PreviousMonthPartial )
)

I have an active relationship between fact table and dim date table:Untitled.png

Please help.

1 ACCEPTED SOLUTION

I realized, my measure was working. I just didnt have any date selected, so it wasnt showing previous month. I am closing my request. Thank you for you replay. 

View solution in original post

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Dmoreira ,

Why do you say your measure not work?

More details will be much helpful.

If it is convenient, could you 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.

I realized, my measure was working. I just didnt have any date selected, so it wasnt showing previous month. I am closing my request. Thank you for you replay. 

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.