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
drejko
New Member

filter out big data in charts

Hi,

I have data with weight, height and gender values. Unfortunately some weght data are wrong (in grams instead of kilograms). Is it possible to hide (filter out) this data so that chart will show correct / proper average value (e.g. 79 instead of 730 which shows now).

 

Thanks

1 ACCEPTED SOLUTION

you can do both:

calculate a measure that exclude the weight > 150

measuregt150.PNG

 

or filter the table in advanced editor (edit query) remove the row completeley:

remove row.PNG

be aware that in the second case you remove the rows .

 

Another way is to replace the value in the advanced editor.

hope this help

View solution in original post

3 REPLIES 3
gipiluso
Resolver II
Resolver II

you can filter it both in advanced editor or with a dax measure.

In the second case use this formula for measure:

CALCULATE(sum(Table1[weight]), FILTER(Table1,Table1[weight]<150))

 

in this case I assume max kg weight is 150kg

Is this meant like to create new column for data (and filter out undesired data) and work with it in visualisation?

I am totaly new with power bi and still finding my way with basics 🙂

you can do both:

calculate a measure that exclude the weight > 150

measuregt150.PNG

 

or filter the table in advanced editor (edit query) remove the row completeley:

remove row.PNG

be aware that in the second case you remove the rows .

 

Another way is to replace the value in the advanced editor.

hope this help

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.