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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
jajaAtPowerbi
Frequent Visitor

Select 2 different set of data from a single table for comparison

i have data by season by verison in a single talbe.

would like to allow user to select 1 set of season+version (named This Year) and another set season+version (named Last Year) for comparision.

Why i get last year all same value? How can i solve this?

 
Measures are as below: 
================================================
TY Value by Type =
SUMX(
    VALUES(DATA[Type]),SUM(DATA[Value])
)

====================================================

LY Value by Type =
var this_year = SELECTEDVALUE(VS_SEASON[Season])
var this_version = SELECTEDVALUE(VS_SEASON[Version])

return

SUMX(
    VALUES(DATA[Type]),
    CALCULATE(
        SUM(DATA[Value]),
        FILTER(
            FILTER(
                ALL(DATA),
                DATA[Version] = this_version
            ),
            DATA[Season] = this_year
        )
    )
)
======================================================
 
KPI: Compare by Type =
SWITCH(
    SELECTEDVALUE('Year'[Year]),
    "This Year", [TY Value by Type],
    "Last Year", [LY Value by Type]
)
 
jajaAtPowerbi_0-1698826250683.pngjajaAtPowerbi_2-1698826461332.pngjajaAtPowerbi_3-1698826485613.pngjajaAtPowerbi_4-1698826508798.pngjajaAtPowerbi_5-1698826522626.pngjajaAtPowerbi_6-1698826539757.png

 

 

 

 

 

 

 

1 REPLY 1
lbendlin
Super User
Super User

Once you apply a filter to a table column it will no longer allow you to independently apply a different filter on the same table column.  Use measures the remove the filter, or use a shadow copy of the table.

 

Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue.
If you are unsure how to do that please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.

If you want to get answers faster please refer to https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.