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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
westman
Regular Visitor

Selected value in Date range slicer using Between on measures in a card visual

Hello-

I am trying to have a between date range slicer  filter a measure that filters a table 
Here is the original Measure :

Current Open Orders = CALCULATE([SalesPeriodT],FILTER(MTDSalestbl, MTDSalestbl[Sequence]= "2T-Current Open Orders Grand Total"))
 
Here is the SalesPeriodT Measure nested in the the above measure:
SalesPeriodT = Sumx(MTDSalestbl, MTDSalestbl[Amount]
 
Here is the measure i tried to write to have the between date slicer filter the above measure:
Test Open Orders =
CALCULATE (
    SUMX (
        FILTER (
            MTDSalestbl,
            MTDSalestbl[Sequence] = "2T-Current Open Orders Grand Total"
        ),
        Measuretbl[SalesPeriodT]
    ),
    FILTER (
        ALLSELECTED ( 'Datestbl'[Date] ),
        'Datestbl'[Date] >= MIN ( 'Datestbl'[Date] )
            && 'Datestbl'[Date] <= MAX ( 'Datestbl'[Date] )
    )
)

When i try to add the date slicer it just blanks all the cards to 2 dashes and my other donut chart to empty
Attached is a screen shot of my report and its relationships
mtderror.PNG          mtdrelations.PNG  mtderror.PNG


Any advice would be appreciated

4 REPLIES 4
Anonymous
Not applicable

Hi @westman ,
Based on your description, I created the following test data
Datestbl

vheqmsft_0-1713418682615.png

MTDSalestbl

vheqmsft_1-1713418699881.png

Relationship

vheqmsft_2-1713418747341.png

You could try changing ALLSELECTED ( 'Datestbl'[Date] ) to ALL( 'Datestbl'[Date] )

Test Open Orders = 
CALCULATE (
    SUMX (
        FILTER (
            MTDSalestbl,
            MTDSalestbl[Sequence] = "2T-Current Open Orders Grand Total"
        ),
        MTDSalestbl[SalesPeriodT]
    ),
    FILTER (
        ALL ( 'Datestbl'[Date] ),
        'Datestbl'[Date] >= MIN ( 'Datestbl'[Date] )
            && 'Datestbl'[Date] <= MAX ( 'Datestbl'[Date] )
    )
)

Final output

vheqmsft_3-1713418895621.png

Best regards,

Albert He

 

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

 

 

 

 

Thank you for replying Albert, i made your suggestion change of ALL vs ALLSELECTED.  However, there was no change in the output into the card visual.  Same 2 dashed lines.   


I am wondering if using a Min Date and Max date as a VAR in the measure may be more accurate way to write the measure instead of using FILTER.  What are your thoughts?

Anonymous
Not applicable

Hi @westman ,
Thank you for your reply, the above dax function is based on the sample data I created, you can try to use the maximum date or minimum date as the filter condition, if you want more accurate help, please provide the detailed sample data and hide the sensitive information.

Best regards,

Albert He

 

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

westman
Regular Visitor

Side note: The measures  Current Open Orders and SalesPeriodT work if I  remove the date slicer, only adding the date slicer does it result in the picture above

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.