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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

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.