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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

SELECTEDVALUE alternate result not passing to filter - is there a way to do this?

I posted this previously but i don't think i was able to explain my problem correctly - I would like the signups vs target visual to show the latest month if nothing is selected in the signups by month visual - it currently shows the full history if nothing is selected.  

 

PBIX with sample data: 

https://drive.google.com/file/d/1khDD9vZDYgV14BDx-Ti1nJiStQGsrmGM/view?usp=sharing

 

if you select a month in the first visual the second visual filters correctly - if nothing is selected the second visual should show May (as per the selected month card) but it shows all months.  

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below measures and the attached pbix file.

 

SelectedMTD cumulative = 
VAR _maxdate =
    CALCULATE ( MAX ( Volumes[original_received_date] ), REMOVEFILTERS () )
VAR _maxmonthyear =
    MAXX (
        FILTER ( ALL ( DIM_Calendar ), DIM_Calendar[Date] = _maxdate ),
        DIM_Calendar[MonthYear]
    )
VAR _mtdmeasure =
    CALCULATE ( SUM ( Volumes[count per day] ), DATESMTD ( DIM_Calendar[Date] ) )
VAR SignUpsMTD =
    SWITCH (
        TRUE (),
        CALCULATE ( COUNTROWS ( VALUES ( DIM_Calendar[MonthYear] ) ), ALLSELECTED () ) = 1, _mtdmeasure,
        CALCULATE (
            SUM ( Volumes[count per day] ),
            DATESMTD ( DIM_Calendar[Date] ),
            DIM_Calendar[MonthYear] = _maxmonthyear
        )
    )
RETURN
    SignUpsMTD

 

Target MTD = 
VAR _maxdate =
    CALCULATE ( MAX ( Volumes[original_received_date] ), REMOVEFILTERS () )
VAR _maxmonthyear =
    MAXX (
        FILTER ( ALL ( DIM_Calendar ), DIM_Calendar[Date] = _maxdate ),
        DIM_Calendar[MonthYear]
    )
VAR _mtdmeasure =
    CALCULATE ( SUM ( Targets[Target] ), DATESMTD ( DIM_Calendar[Date] ) )
VAR SignUpsMTD =
    SWITCH (
        TRUE (),
        CALCULATE ( COUNTROWS ( VALUES ( DIM_Calendar[MonthYear] ) ), ALLSELECTED () ) = 1, _mtdmeasure,
        CALCULATE (
            SUM ( Targets[Target] ),
            DATESMTD ( DIM_Calendar[Date] ),
            DIM_Calendar[MonthYear] = _maxmonthyear
        )
    )
RETURN
    SignUpsMTD

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

3 REPLIES 3
tamerj1
Super User
Super User

Hi @Anonymous 
Here is another way of doing that similar to yours

https://www.dropbox.com/t/OUOkIshFtRXkSqKf

Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below measures and the attached pbix file.

 

SelectedMTD cumulative = 
VAR _maxdate =
    CALCULATE ( MAX ( Volumes[original_received_date] ), REMOVEFILTERS () )
VAR _maxmonthyear =
    MAXX (
        FILTER ( ALL ( DIM_Calendar ), DIM_Calendar[Date] = _maxdate ),
        DIM_Calendar[MonthYear]
    )
VAR _mtdmeasure =
    CALCULATE ( SUM ( Volumes[count per day] ), DATESMTD ( DIM_Calendar[Date] ) )
VAR SignUpsMTD =
    SWITCH (
        TRUE (),
        CALCULATE ( COUNTROWS ( VALUES ( DIM_Calendar[MonthYear] ) ), ALLSELECTED () ) = 1, _mtdmeasure,
        CALCULATE (
            SUM ( Volumes[count per day] ),
            DATESMTD ( DIM_Calendar[Date] ),
            DIM_Calendar[MonthYear] = _maxmonthyear
        )
    )
RETURN
    SignUpsMTD

 

Target MTD = 
VAR _maxdate =
    CALCULATE ( MAX ( Volumes[original_received_date] ), REMOVEFILTERS () )
VAR _maxmonthyear =
    MAXX (
        FILTER ( ALL ( DIM_Calendar ), DIM_Calendar[Date] = _maxdate ),
        DIM_Calendar[MonthYear]
    )
VAR _mtdmeasure =
    CALCULATE ( SUM ( Targets[Target] ), DATESMTD ( DIM_Calendar[Date] ) )
VAR SignUpsMTD =
    SWITCH (
        TRUE (),
        CALCULATE ( COUNTROWS ( VALUES ( DIM_Calendar[MonthYear] ) ), ALLSELECTED () ) = 1, _mtdmeasure,
        CALCULATE (
            SUM ( Targets[Target] ),
            DATESMTD ( DIM_Calendar[Date] ),
            DIM_Calendar[MonthYear] = _maxmonthyear
        )
    )
RETURN
    SignUpsMTD

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
Anonymous
Not applicable

That works perfectly, thankyou so much 🙂

 

I thought i was close to working it out, but this is very different to my attempt  😕

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.