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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
c13pan
New Member

How to put more than one condition from filter on my measure?

I have created cummulative data in new measure called Running Total Measure  however I need this measure to show based on slicer as well if I select more than one filter, it should show on these conditions as well if no  option is selected show all.

 

Now it is working only if I select one condition if I don't select any or select more than one, it will show wrong data

 

Running Total =
CALCULATE (
SUM ('SLM'[AnnualCost]),
FILTER (
ALL ('SLM),
('SLM'[CreatedOn] <= MAX ('SLM'[CreatedOn]))&&'SLM'[Sites.Name]=SELECTEDVALUE('SLM'[Sites.Name])&&'SLM'[Statuses.Name]<>"Closed"  && 'SLM'[FacilityHierarchyLevels.Name]=SELECTEDVALUE('SLM'[FacilityHierarchyLevels.Name])
)
)

 

 

 

 
1 ACCEPTED SOLUTION

@c13pan  for multiple values

you do

SLM'[Sites.Name] in values('SLM'[Sites.Name])

 

example

 

 

CALCULATE (
SUM ('SteamLeak Main'[LeakCosts.LostOpportunityCostAnnually]),FILTER ( 'SteamLeak Main', 'SteamLeak Main'[Statuses.Name]<>"Closed"&&'SteamLeak Main'[Statuses.Name]<>"Repair Complete" && SLM'[Sites.Name] in values('SLM'[Sites.Name]) ), filter(ALL('Date'), 'Date'[Date] <= Max('Date'[Date]) ))

 

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

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@c13pan , Usually we try to use slicer from the same table or related table and use cumulative logic using date table (Date table connected with date of your table)

 

Logic will like this

CALCULATE (
SUM ('SteamLeak Main'[LeakCosts.LostOpportunityCostAnnually]),FILTER ( 'SteamLeak Main', 'SteamLeak Main'[Statuses.Name]<>"Closed"&&'SteamLeak Main'[Statuses.Name]<>"Repair Complete"), filter(ALL('Date'), 'Date'[Date] <= Max('Date'[Date]) ))

 


To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

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

let us say we do like your advice how can i pass multiple values from slicer to this measure can you help pleasE?

 

@c13pan  for multiple values

you do

SLM'[Sites.Name] in values('SLM'[Sites.Name])

 

example

 

 

CALCULATE (
SUM ('SteamLeak Main'[LeakCosts.LostOpportunityCostAnnually]),FILTER ( 'SteamLeak Main', 'SteamLeak Main'[Statuses.Name]<>"Closed"&&'SteamLeak Main'[Statuses.Name]<>"Repair Complete" && SLM'[Sites.Name] in values('SLM'[Sites.Name]) ), filter(ALL('Date'), 'Date'[Date] <= Max('Date'[Date]) ))

 

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

Solved Thank you
Running Total =
VAR SelectUnit = ALLSELECTED('SLM'[FacilityHierarchyLevels.Name])
Return
CALCULATE (
SUM ('SLM'[AnnualCost]),
FILTER (
ALL ('SLM),
('SLM'[CreatedOn] <= MAX ('SLM'[CreatedOn]))&&'SLM'[Sites.Name]=SELECTEDVALUE('SLM'[Sites.Name])&&'SLM'[Statuses.Name]<>"Closed"  &&  'SLM'[FacilityHierarchyLevels.Name] IN selectedUnit
)
)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Kudoed Authors