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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.