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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mmachacek
Frequent Visitor

Calculate measure with filter items and nonfiltered items

Hello, everyone,

I have a problem with this measure and I can't find the right answer.

We sell equipment and consumables.

My goal is to calculate the ratio of equipment and consumables versus time.
This works well for all time. But if I filter data with another visual to a specific time period I need all older device in the measure.

Please look at the picture bellow.

Screenshot_39.png

 

Measure =all consutables in filtered area divide all devices that are older or in the filtered area.

Could you please help me, thank you very much.
Martin

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Try to create measure like below:

Measure = 
var filtered_ = COUNT('Table'[device])
var all_ = CALCULATE(COUNT('Table'[device]),FILTER(ALL('Table'),'Table'[Date]<MIN('Table'[Date])))
return DIVIDE(filtered_,all_)

Vlianlmsft_0-1634711938838.png

 

View solution in original post

3 REPLIES 3
V-lianl-msft
Community Support
Community Support

Try to create measure like below:

Measure = 
var filtered_ = COUNT('Table'[device])
var all_ = CALCULATE(COUNT('Table'[device]),FILTER(ALL('Table'),'Table'[Date]<MIN('Table'[Date])))
return DIVIDE(filtered_,all_)

Vlianlmsft_0-1634711938838.png

 

Hello @V-lianl-msft ,

 

thank you, this solution works.

 

But how to added another filter to this, for example filter for device manufacturer?
If I tried I still have all date, based on ALL date formula in meassure.

Thank you.
Martin

AllisonKennedy
Super User
Super User

@mmachacek 

Try this measure and then use for your divide: 

All Devices Older or In Filtered Area = 

CALCULATE( [Devices Count], ALL(DimDate), DimDate[Date] <= MAX(DimDate[Date]))


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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