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
kasife
Helper V
Helper V

last 3 months

 

 

 

 

Guys, good afternoon!

I'm having difficulty creating a measurement. What I want to get is the last 3 months within the bar chart. I took a measurement, but it seems to be accumulating

CALCULATE(
    [repasses Realizados],
    FILTER(
        ALL(d_calendario),
        d_calendario[Date] >= EDATE(MAX(d_calendario[Date]), -3)
            && d_calendario[Date] <= MAX(d_calendario[Date])
    )
)

kasife_0-1715378894941.png

I want to get the last 3 months, but without using the screen filter

kasife_1-1715378950131.png

How a do it?

 

 

1 ACCEPTED SOLUTION
xifeng_L
Solution Sage
Solution Sage

Hi @kasife ,

 

You can try below measure:

 

CALCULATE(
    [repasses Realizados],
    KEEPFILTERS(
        DATESINPERIOD(d_calendario[Date],EOMONTH(TODAY(),0),-3,MONTH)
    )
)

 

The key is the KEEPFILTERS function.

 

 

If I solve your problem , pls mark my post as a solution and appreciate your Kudos !

 

Thank you~

 

 

View solution in original post

4 REPLIES 4
xifeng_L
Solution Sage
Solution Sage

Hi @kasife ,

 

You can try below measure:

 

CALCULATE(
    [repasses Realizados],
    KEEPFILTERS(
        DATESINPERIOD(d_calendario[Date],EOMONTH(TODAY(),0),-3,MONTH)
    )
)

 

The key is the KEEPFILTERS function.

 

 

If I solve your problem , pls mark my post as a solution and appreciate your Kudos !

 

Thank you~

 

 

@xifeng_L  it worked. Thank you so much .

bhanu_gautam
Super User
Super User

@kasife , You can try using below measure

 

Last 3 Months Total =
CALCULATE(
[repasses Realizados],
DATESINPERIOD(
d_calendario[Date],
TODAY(),
-3,
MONTH
)
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





@bhanu_gautam I tried it and didn't work.

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.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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