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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
tkaste63
New Member

Calculating continuous MTD when there is no report for a month

Relativley new to Power BI.

 

I used the quick measure to create a MTD premium

 

MTD Net Specific Premium =

CALCULATE(
    SUM('Spec Prem'[Specific Net Premium]),
    FILTER(
        ALLSELECTED('Extract Date'[Extract Date]),
        ISONORAFTER('Extract Date'[Extract Date], MAX('Extract Date'[Extract Date]), DESC)
    )
)
 
Works great except when there is no Extract generated for a month as there was no premium paid so a report( Extract) is not generated for that month
 
 tkaste63_2-1722517319755.png

 

How can I get 1/1/24 to show the vaule in 12/1/23 and show the value as of 4/1/24 in both 5/1/24 and 6/1/24. Case reserves can also create the same issue but in the instance shown is does not.

1 ACCEPTED SOLUTION
BeaBF
Memorable Member
Memorable Member

@tkaste63 Hi!

 

1. Create a new Date table in Power BI if you don't already have one.

DateTable =
ADDCOLUMNS (
CALENDAR (DATE(2020, 1, 1), DATE(2024, 12, 31)),
"Year", YEAR([Date]),
"MonthNumber", MONTH([Date]),
"MonthName", FORMAT([Date], "MMMM"),
"YearMonth", FORMAT([Date], "YYYYMM")
)

2. Create your MTD Measure as:

MTD Net Specific Premium =
CALCULATE(
SUM('Spec Prem'[Specific Net Premium]),
FILTER(
ALL('DateTable'),
'DateTable'[Date] <= MAX('DateTable'[Date])
),
DATESMTD('DateTable'[Date])
)

 

Make sure your Spec Prem table has a relationship with your new DateTable based on the appropriate date columns.

 

BBF

View solution in original post

2 REPLIES 2
tkaste63
New Member

Thanks for the advise. Turns out it was a relationship issue, Spec Prem Table to Extract Date(datetable) was set to both and not single. Made the changes in the DAX formula and changed relationship to single and works great

 

BeaBF
Memorable Member
Memorable Member

@tkaste63 Hi!

 

1. Create a new Date table in Power BI if you don't already have one.

DateTable =
ADDCOLUMNS (
CALENDAR (DATE(2020, 1, 1), DATE(2024, 12, 31)),
"Year", YEAR([Date]),
"MonthNumber", MONTH([Date]),
"MonthName", FORMAT([Date], "MMMM"),
"YearMonth", FORMAT([Date], "YYYYMM")
)

2. Create your MTD Measure as:

MTD Net Specific Premium =
CALCULATE(
SUM('Spec Prem'[Specific Net Premium]),
FILTER(
ALL('DateTable'),
'DateTable'[Date] <= MAX('DateTable'[Date])
),
DATESMTD('DateTable'[Date])
)

 

Make sure your Spec Prem table has a relationship with your new DateTable based on the appropriate date columns.

 

BBF

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.