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
Joshua_
Helper I
Helper I

Help with the date filter

Hi Guys,

I need to calculate the sales per month between 2 dates, I created in the calendar table two columns with the maximum date and the minimum date, I also created a measure with the datebetween function with the dates but the result is the accumulated sales and it should be shown per month .

measure Saldo=

VAR INI = SELECTEDVALUE(CALENDARIO[INICIO_HISTORICO])
VAR FIN = SELECTEDVALUE(CALENDARIO[FIN_HISTORICO])

RETURN


CALCULATE(
[Saldo_Prom],
DATESBETWEEN(CALENDARIO[Date],INI,FIN)

)



table.png

any suggestions, thanks guys.

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Does it do what you expect if you use KEEPFILTERS to prevent DATESBETWEEN from overriding the month?

 

Saldo =
VAR INI = SELECTEDVALUE ( CALENDARIO[INICIO_HISTORICO] )
VAR FIN = SELECTEDVALUE ( CALENDARIO[FIN_HISTORICO] )
RETURN
    CALCULATE (
        [Saldo_Prom],
        KEEPFILTERS ( DATESBETWEEN ( CALENDARIO[Date], INI, FIN ) )
    )

View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

Does it do what you expect if you use KEEPFILTERS to prevent DATESBETWEEN from overriding the month?

 

Saldo =
VAR INI = SELECTEDVALUE ( CALENDARIO[INICIO_HISTORICO] )
VAR FIN = SELECTEDVALUE ( CALENDARIO[FIN_HISTORICO] )
RETURN
    CALCULATE (
        [Saldo_Prom],
        KEEPFILTERS ( DATESBETWEEN ( CALENDARIO[Date], INI, FIN ) )
    )

It was just what I needed, thank you very much @AlexisOlson 

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.

Top Solution Authors