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
nj17
Helper III
Helper III

Show different values in KPI based on selection from slicer

Hi All,

 

I have sales data in my dataset.

In power BI, I have 2 slicers,one having country(Japan) and another having sales vendor(BS,CO and SI).I have one measure which shows sum of sales in a KPI.Now I want to show sales only related to BS vendor when I do not select anything on slicer or while I select BS from vendor.While I select CO or SI then it should show sales related to this vendor.

How can I achieve this in a single KPI.

 

Thanks

1 ACCEPTED SOLUTION
tex628
Community Champion
Community Champion

Something along the lines of this:

Measure =
SWITCH( HASONEFILTER( 'Vendor'[Name] ) ,
FALSE , [Sales BS] ,
TRUE , [Sales]
)


Sales BS being the normal sales measure with a filter on BS. 

Br,

J


Connect on LinkedIn

View solution in original post

6 REPLIES 6
simrantuli
Continued Contributor
Continued Contributor

Hi,

 

You could use the below DAX to create your measure.

Measure = IF(
                      ISFILTERED([Sales Vendor])=FALSE(),
                      CALCULATE(SUM(Sales),FILTER('Vendor',[Sales Vendor]="BS")),
                      SUM(Sales)
)

Please note that I have assumed that 'Vendor' is the table name where you have the column 'Sales Vendor'.

Also, please make sure there's a relationship between Sales and Vendor tables.

amitchandak
Super User
Super User

@nj17 , need to have very similar code -https://radacad.com/change-the-column-or-measure-value-in-a-power-bi-visual-by-selection-of-the-slic...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Tahreem24
Super User
Super User

@nj17 ,

Try a below DAX:

Measure = CALCULATE(SUM(Table[Sales]),ALLEXCEPT(Table1,Table[VendorList]))

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
tex628
Community Champion
Community Champion

Something along the lines of this:

Measure =
SWITCH( HASONEFILTER( 'Vendor'[Name] ) ,
FALSE , [Sales BS] ,
TRUE , [Sales]
)


Sales BS being the normal sales measure with a filter on BS. 

Br,

J


Connect on LinkedIn

@tex628for vendor i have different dim table so how can I create a measure in which BS can filter Sales data?I have different datasets for sales and vendor.

tex628
Community Champion
Community Champion

Assuming there is a relationship between your sales table and your vendor table the calculation should look something like this:

Sales BS = Calculate([Sales] , 'Vendors'[Name] = "BS")


[Sales] being your normal sales measure. 

/ J


Connect on LinkedIn

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.