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

Evaluating dates in the past

Dear all,

I have a set of data that has to be evaluated taking in account the previous month.

I am presenting a mock dataset (normal month/value columns) and the desired output.
I need a measure that for each month it evaluates itself PLUS a function of the previous month.

DesiredFAC.png

I can't manage this situation as the filters block me to evaluate the previous months.

I appreciate your help,
V

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

As the screenshot you shared, we should convert the month column from text to number by creating a calculated column.

 

MonthNumber = 
SWITCH (
    'Dataset'[Month],
    "January", 1,
    "February", 2,
    "March", 3,
    "April", 4,
    "May", 5,
    "June", 6,
    "July", 7,
    "August", 8,
    "September", 9,
    "October", 10,
    "November", 11,
    "December", 12
)

1.png

Then we can create the following measure to meet what you need.

CurrentMonth =
SUM ( 'Dataset'[Value] )

NextMonth/2 =
FORMAT (
    CALCULATE (
        SUM ( 'Dataset'[Value] ),
        FILTER (
            ALL ( 'Dataset' ),
            'Dataset'[MonthNumber]
                = SELECTEDVALUE ( 'Dataset'[MonthNumber] ) + 1
        )
    ) / 2,
    "General Number"
)

Total =
IFERROR ( [CurrentMonth] - [NextMonth/2], BLANK () )

 

2.png

BTW, pbix as attached.

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

1 REPLY 1
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

As the screenshot you shared, we should convert the month column from text to number by creating a calculated column.

 

MonthNumber = 
SWITCH (
    'Dataset'[Month],
    "January", 1,
    "February", 2,
    "March", 3,
    "April", 4,
    "May", 5,
    "June", 6,
    "July", 7,
    "August", 8,
    "September", 9,
    "October", 10,
    "November", 11,
    "December", 12
)

1.png

Then we can create the following measure to meet what you need.

CurrentMonth =
SUM ( 'Dataset'[Value] )

NextMonth/2 =
FORMAT (
    CALCULATE (
        SUM ( 'Dataset'[Value] ),
        FILTER (
            ALL ( 'Dataset' ),
            'Dataset'[MonthNumber]
                = SELECTEDVALUE ( 'Dataset'[MonthNumber] ) + 1
        )
    ) / 2,
    "General Number"
)

Total =
IFERROR ( [CurrentMonth] - [NextMonth/2], BLANK () )

 

2.png

BTW, pbix as attached.

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

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.