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

How to SUM amount in the next three month

Hello guys,

 

I would like to know how to calculate the total initial after three months.

 

The measure of Initial  is :

CALCULATE(DISTINCTCOUNT('Fact User License'[ObjectId]),

                                       FILTER('Fact User License','Fact User License'[InitialDate] = "1")
                             )

 

In the image below there must be a new column based on the total Initial after three months. 

 

The expected result for the first row with this new measure must be  14. This because 8 (2018/01)    + 3 (2018/02)  + 3 (2018/03) = 14.

 

any suggestion to create a new measure or calculated column to realize the total initial amount after first three months?

 

Thanks in advaced!

 

2018-05-21 17_23_58-User and Portal User License Insights - Power BI Desktop.png

1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
Employee

Hi @Anonymous,

 

Try the formula below please.  A date table is needed if you don't have one.

Measure =
CALCULATE (
    DISTINCTCOUNT ( 'Fact User License'[ObjectId] ),
    DATESINPERIOD ( 'datetable'[date], FIRSTDATE ( 'datetable'[date] ), 3, MONTH ),
    FILTER ( 'Fact User License', 'Fact User License'[InitialDate] = "1" )
)

Best Regards,

Dale

Community Support Team _ Dale
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

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @Anonymous,

 

Try the formula below please.  A date table is needed if you don't have one.

Measure =
CALCULATE (
    DISTINCTCOUNT ( 'Fact User License'[ObjectId] ),
    DATESINPERIOD ( 'datetable'[date], FIRSTDATE ( 'datetable'[date] ), 3, MONTH ),
    FILTER ( 'Fact User License', 'Fact User License'[InitialDate] = "1" )
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks, it works!

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.