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
Sujit14496
Resolver I
Resolver I

Measures in Power BI Calculation

Hello All ,
This is a question which has been a problem for atleast a month . I am using Power BI for more than a year. But I am stuck here and any help will be highly appreciated
Following is the dummy datatable 

StateSaleIDSale DateTotal SaleService Period  (in months)
A11/1/202324913
A21/1/202231715
B31/1/202029120
B41/1/20213885
C55/2/20231099
C65/3/202229312

 

I have created a calendar table , which has all dates form 2019 to 2024. This date from calendar table is in one to many relationship with Sale Date 

 

Following is what is the desired result in power bi 

  2023 
 StateCurrent year SaleCarry forward Sale  
 A229.846263.4  
 B    
 C    



this is a simple presentation , i have only calculated value for 2023 , we do have to include months and other years 


Defination : 

Current year Sale -  To calculate this first we need sale per month i.e Sales / Service Period 
Important thing to keep in mind that current year sale means addition of sales/service period for the year it was sold (Sale date)
for example if sale date is 01/01/2022 then for that specific sale ID current year sale for all years will be 0 except 2022

example from dummy data for first row sale/service period = 19.15 
this for service period of 13 months 
but as the current year only can be for 12 months hence left out months after sale date is jan(As sale was done in jan) - dec = 12 
hence 19.15*12 = 229.8
And as ID 2  was not sold in 2023 , hence final Current year sale for A in 2023 will be 229.8+0 = 229.8
and the rest left will go for carry forward sales for the same saleID for next year. But remeber we only calculate carry forward for 2 years or left our service period after current year sale (whichever smaller)
Like for example from dummy data for ID 2 , it was sold in 2022 , hence that means its carry forward will be accounted in 2023 , 
hence for ID 2 , 
Sale/sercvice period = 317/15 = 21.13
for its carry foward period lets first find out current year period of same ID 
for ID 2 service period is 15 months and it was sold in january hence leaving (jan-dec) 12 months rest is carry forward period of 3 months  (here we used 3 as 3 months is smaller than 2 years, as mentioned above that for carry forward only take left out servic period after current year sale or 2 years whichever smaller )
hence 3*21.13 = 63.4
as there is no other ID which was sold in 2021 or 2022 for A 
Hence carry forward for A is 63.4





Please help 
@dax 
@GuyInACube 
@amitchandak 
@AbbasG 
@technolog 

 

2 ACCEPTED SOLUTIONS

Hi @Sujit14496 ,

 

Please try:

Carry forward Sale2 = 
VAR _a =
    MAXX ( 'Calendar', [Date] )
VAR _b =
    MINX ( 'Calendar', [Date] )
VAR _c =
    SELECTCOLUMNS ( 'Table', "State", [State] )
var _e = SELECTCOLUMNS('Table',"Date",[Sale Date])   
VAR _d =
    SUMX (
        FILTER ( ALL ( 'Table' ), [State] IN _c && [Sale Date] <= _a &&[Sale Date] in _e),
        SWITCH (
            TRUE (),
            NOT([Sale Date] in SELECTCOLUMNS('Table',"Date",[Sale Date])),0,
            DATEDIFF ( [Sale Date], _a, YEAR ) >= 2, 0,
            DATEDIFF ( [Sale Date], _a, YEAR ) <= 0, 0,
            DATEDIFF ( [Sale Date], _b, MONTH ) <= [Service Period  (in months)],
                DIVIDE ( [Total Sale], [Service Period  (in months)] )
                    * ( [Service Period  (in months)] - DATEDIFF ( [Sale Date], _b, MONTH ) ),
            0
        )
    )
RETURN
    _d

Final output:

vjianbolimsft_0-1687859635147.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Sujit14496
Resolver I
Resolver I

I made some changes to   and this works perfectly

 

Carry forward Avoidance =

VAR _a =

    MAXX ( 'Calendar', [Date] )  

VAR _b =

    MINX ( 'Calendar', [Date] )  

VAR _c =

    SELECTCOLUMNS ( 'Data', "Catg", [Catg] )

var _e = SELECTCOLUMNS('Data',"Date",[SaleDate])  

VAR _d =

    SUMX (                          

        FILTER ( ALL ( 'Data' ), [Catg] IN _c && [SaleDate] <= _a && Data[SaleDate] in _e ),

        SWITCH (

            TRUE (),

             NOT([Saledate] in SELECTCOLUMNS('Data',"Date",[Saledate])),0,

            DATEDIFF ( [Saledate], _a, YEAR ) = 1,

                SWITCH (

                    TRUE (),    




                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) < Data[ServiceMonths]

                    &&

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) + 12 >= Data[ServiceMonths]

                     &&

                                        Data[ServiceMonths] - (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) <= 12

,

                    Data[ServiceMonths] - (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ),

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) < Data[ServiceMonths]

                    &&

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) + 12 >= Data[ServiceMonths]

                     &&

                                        Data[ServiceMonths] - (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) >12

,

                    12,

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1) + 12  < Data[ServiceMonths] , 12 ,

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1) >= Data[ServiceMonths] , 0 ,0)

                ,

            DATEDIFF ( [Saledate], _a, YEAR ) = 2,

                SWITCH (

                    TRUE (),

 

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12  < Data[ServiceMonths]

                    &&

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12 + 12 <=  Data[ServiceMonths]

                    , 12,

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12  < Data[ServiceMonths]

                    &&

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12 + 12 >= Data[ServiceMonths]

 

                    , Data[ServiceMonths]-((DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12 ),

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)>=Data[ServiceMonths],0,0),0)

                    * DIVIDE(Data[AvoidanceSale],Data[ServiceMonths]))

return _d



 

 

Current year Avoidance sale =

VAR _a =

    MAXX ( 'Calendar', [Date] )

VAR _b =

    SUMX (

        FILTER('Contracts',Contracts[Saledate]<=_a&&Contracts[Saledate]>=MINX('Calendar',[Date])),

        DIVIDE ( Contracts[AvoidanceSale], [Service Months] )

            * (

                MINX (

                    { DATEDIFF ( 'Contracts'[Saledate], _a, MONTH ), [Service Months] },

                    [Value]

                )

                    + IF (

                        MINX (

                            { DATEDIFF ( 'Contracts'[Saledate], _a, MONTH ), [Service Months] },

                            [Value]

                        ) = [Service Months],

                        0,

                        1

                    )

            )

    )

RETURN

    _b

 

View solution in original post

16 REPLIES 16
sneddon65
Frequent Visitor

I'm wondering if anyone can help me with a MEASURE calculation within a tabular report in Power BI desktop.

 

Here is the challenge. I have a tabular visual in PBI desktop producing trip data including Vehicle Registration, Start date and time and End date and time from some different tables in my sql database. I also have a final end odometer reading but I do not have the start odometer reading in each row of data. I need a MEASURE formula to lookup the previous date and time based on the Vehicle Registration so that i have a Start and End Odometer reading and then from that I calcxulate the journey length. Is this possible?

 

The Vehicle table stores the Registration and another table stores the dates / times and the end odometer reading. The two tables are connected by a Vehicle Id.

 

Sujit14496
Resolver I
Resolver I

I made some changes to   and this works perfectly

 

Carry forward Avoidance =

VAR _a =

    MAXX ( 'Calendar', [Date] )  

VAR _b =

    MINX ( 'Calendar', [Date] )  

VAR _c =

    SELECTCOLUMNS ( 'Data', "Catg", [Catg] )

var _e = SELECTCOLUMNS('Data',"Date",[SaleDate])  

VAR _d =

    SUMX (                          

        FILTER ( ALL ( 'Data' ), [Catg] IN _c && [SaleDate] <= _a && Data[SaleDate] in _e ),

        SWITCH (

            TRUE (),

             NOT([Saledate] in SELECTCOLUMNS('Data',"Date",[Saledate])),0,

            DATEDIFF ( [Saledate], _a, YEAR ) = 1,

                SWITCH (

                    TRUE (),    




                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) < Data[ServiceMonths]

                    &&

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) + 12 >= Data[ServiceMonths]

                     &&

                                        Data[ServiceMonths] - (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) <= 12

,

                    Data[ServiceMonths] - (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ),

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) < Data[ServiceMonths]

                    &&

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) + 12 >= Data[ServiceMonths]

                     &&

                                        Data[ServiceMonths] - (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1 ) >12

,

                    12,

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1) + 12  < Data[ServiceMonths] , 12 ,

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1) >= Data[ServiceMonths] , 0 ,0)

                ,

            DATEDIFF ( [Saledate], _a, YEAR ) = 2,

                SWITCH (

                    TRUE (),

 

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12  < Data[ServiceMonths]

                    &&

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12 + 12 <=  Data[ServiceMonths]

                    , 12,

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12  < Data[ServiceMonths]

                    &&

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12 + 12 >= Data[ServiceMonths]

 

                    , Data[ServiceMonths]-((DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)+12 ),

                    (DATEDIFF(Data[Saledate],DATE(YEAR(Data[Saledate]),12,31),MONTH)+1)>=Data[ServiceMonths],0,0),0)

                    * DIVIDE(Data[AvoidanceSale],Data[ServiceMonths]))

return _d



 

 

Current year Avoidance sale =

VAR _a =

    MAXX ( 'Calendar', [Date] )

VAR _b =

    SUMX (

        FILTER('Contracts',Contracts[Saledate]<=_a&&Contracts[Saledate]>=MINX('Calendar',[Date])),

        DIVIDE ( Contracts[AvoidanceSale], [Service Months] )

            * (

                MINX (

                    { DATEDIFF ( 'Contracts'[Saledate], _a, MONTH ), [Service Months] },

                    [Value]

                )

                    + IF (

                        MINX (

                            { DATEDIFF ( 'Contracts'[Saledate], _a, MONTH ), [Service Months] },

                            [Value]

                        ) = [Service Months],

                        0,

                        1

                    )

            )

    )

RETURN

    _b

 

v-jianboli-msft
Community Support
Community Support

Hi @Sujit14496 ,

 

Please try:

Carry forward Sale = 
VAR _a =
    MAXX ( 'Calendar', [Date] )
VAR _b =
    MINX ( 'Calendar', [Date] )
VAR _c =
    SELECTCOLUMNS ( 'Table', "State", [State] )
VAR _d =
    SUMX (
        FILTER ( ALL ( 'Table' ), [State] IN _c && [Sale Date] <= _a ),
        SWITCH (
            TRUE (),
            DATEDIFF ( [Sale Date], _a, YEAR ) = 1,
                SWITCH (
                    TRUE (),
                    [Service Period  (in months)]
                        - DATEDIFF ( [Sale Date], DATE ( YEAR ( [Sale Date] ), 12, 31 ), MONTH ) - 1 > 12, 12,
                    [Service Period  (in months)]
                        - DATEDIFF ( [Sale Date], DATE ( YEAR ( [Sale Date] ), 12, 31 ), MONTH ) - 1 <= 12
                        && [Service Period  (in months)]
                            - DATEDIFF ( [Sale Date], DATE ( YEAR ( [Sale Date] ), 12, 31 ), MONTH ) - 1 > 0,
                        [Service Period  (in months)]
                            - DATEDIFF ( [Sale Date], DATE ( YEAR ( [Sale Date] ), 12, 31 ), MONTH ) - 1,
                    0
                ),
            DATEDIFF ( [Sale Date], _a, YEAR ) = 2,
                SWITCH (
                    TRUE (),
                    [Service Period  (in months)]
                        - DATEDIFF ( [Sale Date], DATE ( YEAR ( [Sale Date] ) + 1, 12, 31 ), MONTH ) - 1 >= 12, 12,
                    [Service Period  (in months)]
                        - DATEDIFF ( [Sale Date], DATE ( YEAR ( [Sale Date] ) + 1, 12, 31 ), MONTH ) - 1 < 12
                        && [Service Period  (in months)]
                            - DATEDIFF ( [Sale Date], DATE ( YEAR ( [Sale Date] ), 12, 31 ), MONTH ) - 1 > 0,
                        [Service Period  (in months)]
                            - DATEDIFF ( [Sale Date], DATE ( YEAR ( [Sale Date] ) + 1, 12, 31 ), MONTH ) - 1,
                    0
                ),
            0
        )
            * DIVIDE ( [Total Sale], [Service Period  (in months)] )
    )
RETURN
    _d

Final output:

vjianbolimsft_0-1687332578626.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks @v-jianboli-msft  This is wonderful 
But i still have one last problem filtering 
When i filter using Sale date , still the carry forward doesnt change it keeps calculating irresepective of filter 

Sujit14496_1-1687530891815.png

 


What should i change in the measure of carry forward which will make me use sale date as filter and help me calculate carry forward of only Sale ID's which were sold in selected dates in the filter 

Please help @v-jianboli-msft  this is the last thing that is missing that is filtering using sale date for both carry forward and current year sale 

other than that the answers are correct please after this I will accept the solution 

I really appreciate your help @v-jianboli-msft 

Please help

Hi @Sujit14496 ,

 

Please try:

Carry forward Sale2 = 
VAR _a =
    MAXX ( 'Calendar', [Date] )
VAR _b =
    MINX ( 'Calendar', [Date] )
VAR _c =
    SELECTCOLUMNS ( 'Table', "State", [State] )
var _e = SELECTCOLUMNS('Table',"Date",[Sale Date])   
VAR _d =
    SUMX (
        FILTER ( ALL ( 'Table' ), [State] IN _c && [Sale Date] <= _a &&[Sale Date] in _e),
        SWITCH (
            TRUE (),
            NOT([Sale Date] in SELECTCOLUMNS('Table',"Date",[Sale Date])),0,
            DATEDIFF ( [Sale Date], _a, YEAR ) >= 2, 0,
            DATEDIFF ( [Sale Date], _a, YEAR ) <= 0, 0,
            DATEDIFF ( [Sale Date], _b, MONTH ) <= [Service Period  (in months)],
                DIVIDE ( [Total Sale], [Service Period  (in months)] )
                    * ( [Service Period  (in months)] - DATEDIFF ( [Sale Date], _b, MONTH ) ),
            0
        )
    )
RETURN
    _d

Final output:

vjianbolimsft_0-1687859635147.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

v-jianboli-msft
Community Support
Community Support

Hi @Sujit14496 ,

 

Please try:

Remove the relationship between Calendar and Table

vjianbolimsft_0-1686554711530.png

Then apply the measrue:

Carry forward Sale = 
VAR _a =
    MAXX ( 'Calendar', [Date] )
VAR _b =
    MINX ( 'Calendar', [Date] )
VAR _c =
    SELECTCOLUMNS ( 'Table', "State", [State] )
VAR _d =
    SUMX (
        FILTER ( ALL ( 'Table' ), [State] IN _c && [Sale Date] <= _a ),
        SWITCH (
            TRUE (),
            DATEDIFF ( [Sale Date], _a, YEAR ) >= 2, 0,
            DATEDIFF ( [Sale Date], _a, YEAR ) <= 0, 0,
            DATEDIFF ( [Sale Date], _b, MONTH ) <= [Service Period  (in months)],
                DIVIDE ( [Total Sale], [Service Period  (in months)] )
                    * ( [Service Period  (in months)] - DATEDIFF ( [Sale Date], _b, MONTH ) ),
            0
        )
    )
RETURN
    _d

Current year Sale = 
VAR _a =
    MAXX ( 'Calendar', [Date] )
VAR _b =
    SUMX (
        FILTER('Table',[Sale Date]<=_a&&[Sale Date]>=MINX('Calendar',[Date])),
        DIVIDE ( [Total Sale], [Service Period  (in months)] )
            * (
                MINX (
                    { DATEDIFF ( 'Table'[Sale Date], _a, MONTH ), [Service Period  (in months)] },
                    [Value]
                )
                    + IF (
                        MINX (
                            { DATEDIFF ( 'Table'[Sale Date], _a, MONTH ), [Service Period  (in months)] },
                            [Value]
                        ) = [Service Period  (in months)],
                        0,
                        1
                    )
            )
    )
RETURN
    _b

Final output:

vjianbolimsft_1-1686554801266.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello @v-jianboli-msft ,
I have summarized the problem here 
please give it a last try  I beg 

Here is the power bi visual  (with measures that you helped with and raw data )

 

 

Sujit14496_0-1686851021061.png


Here is the correct answer which i calculated manually for same data 

 

 

Sujit14496_1-1686851047329.png


Here is the explanation of the formula i used in excle and some notes 

 

Sujit14496_2-1686851067173.png

 



Here is the google drive link for same excle file i used 
https://drive.google.com/file/d/11sH1i9ut0whz6_XMqgTRbecGhK8uF7oS/view?usp=sharing


Please help @v-jianboli-msft 

Sujit14496
Resolver I
Resolver I

Please help @v-jianboli-msft 

v-jianboli-msft
Community Support
Community Support

Hi @Sujit14496 ,

 

Please try:

Current year Sale =
VAR _a =
    MAXX ( 'Calendar', [Date] )
VAR _b =
    SUMX (
        'Table',
        DIVIDE ( [Total Sale], [Service Period  (in months)] )
            * (
                MINX (
                    { DATEDIFF ( 'Table'[Sale Date], _a, MONTH ), [Service Period  (in months)] },
                    [Value]
                ) + 1
            )
    )
RETURN
    _b




Carry forward Sale =
VAR _a =
    MAXX ( 'Calendar', [Date] )
VAR _b =
    MINX ( 'Calendar', [Date] )
VAR _c =
    SUMX (
        FILTER (
            ALL ( 'Table' ),
            [State] = SELECTEDVALUE ( 'Table'[State] )
                && [Sale Date] <= _a
        ),
        SWITCH (
            TRUE (),
            DATEDIFF ( [Sale Date], _a, YEAR ) >= 2, 0,
            DATEDIFF ( [Sale Date], _a, YEAR ) <= 0, 0,
            DATEDIFF ( [Sale Date], _b, MONTH ) <= [Service Period  (in months)],
                DIVIDE ( [Total Sale], [Service Period  (in months)] )
                    * ( [Service Period  (in months)] - DATEDIFF ( [Sale Date], _b, MONTH ) )
        )
    )
RETURN
    _c

Final output:

vjianbolimsft_0-1686210780074.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello @v-jianboli-msft 
I have tried manual calculation to see which measure is wrong 

This is measure that you helped me with 

Sujit14496_0-1686254933149.png

 

 

This is manual calculation (these numbers should match)

Sujit14496_1-1686254986356.png

for B state 
2020 - Current Year - 174.6
2020 - Carry forward - 0
2021 - Current Year -388
2021 - Carry Forward - 116.4


Hence when I can see Current Year sale is wrong as number for 2021 doesnt match for B when tried with your measure and manually in excel

@v-jianboli-msft 
I changed your measure of current year sale to followinf 

Current year Sale =
VAR _a = MAXX ( 'Calendar', [Date] )

VAR _b = SUMX (
'Table',
DIVIDE ( [Total Sale], [Service Period (in months)] )
* (
MINX (
{ DATEDIFF ( 'Table'[Sale Date], _a, MONTH ), [Service Period (in months)] },
[Value]
) + IF(MINX (
{ DATEDIFF ( 'Table'[Sale Date], _a, MONTH ), [Service Period (in months)] },
[Value]
) = [Service Period (in months)], 0, 1)
)
)

RETURN _b

And now everything is perfect 

One last help with same measure 

Sujit14496_0-1686256929562.png


Why is column level total not working for carry forward  😞

Sujit14496_1-1686256985088.png

 



Hi @Sujit14496 ,

 

Please try:

Carry forward Sale = 
VAR _a =
    MAXX ( 'Calendar', [Date] )
VAR _b =
    MINX ( 'Calendar', [Date] )
VAR _c =
    SELECTCOLUMNS ( 'Table', "State", [State] )
VAR _d =
    SUMX (
        FILTER ( ALL ( 'Table' ), [State] IN _c && [Sale Date] <= _a ),
        SWITCH (
            TRUE (),
            DATEDIFF ( [Sale Date], _a, YEAR ) >= 2, 0,
            DATEDIFF ( [Sale Date], _a, YEAR ) <= 0, 0,
            DATEDIFF ( [Sale Date], _b, MONTH ) <= [Service Period  (in months)],
                DIVIDE ( [Total Sale], [Service Period  (in months)] )
                    * ( [Service Period  (in months)] - DATEDIFF ( [Sale Date], _b, MONTH ) ),
            0
        )
    )
RETURN
    _d

Final output:

vjianbolimsft_1-1686297514962.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello @v-jianboli-msft 
Thank you so much 

The Current year sale should stop at the year of  last sale date  (in my actual official data its  2023, hence current year for 2024 and 2025 will not show up )
BUt carry forward sale should show maximum upto 2 years 
As carry forward is for years after the year it was sold , but using your carry forward sale measure , it stops calculating on year 2023 , please can you help so that it can go upto two years or service period which ever is minimum for that sale ID


I really appreciate your help 

Sujit14496
Resolver I
Resolver I

Please help 

@GuyInACube 

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.