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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
DannyHernandez
New Member

Help filter visual table with average value

I have a table and a bar graph in which I have values ​​that are shown with a line the average value.
The average value is 73.3, I need to display a table with only the values ​​below the average.

DannyHernandez_0-1655503591064.png

 

DannyHernandez_5-1655503734953.png

 

the average line has the following configuration:
DannyHernandez_0-1655503917473.pngDannyHernandez_1-1655503925983.png

 

 

Converted to table it looks like this:

DannyHernandez_2-1655503635534.png

 

 It should be displayed as follows:

DannyHernandez_4-1655503695781.png

 

 

 

 

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi,  @DannyHernandez ;

If you have a slicer , you could change the measure to this.

flag = IF(SUM('Table'[KILOMETRAJE TOTAL DIARIO])<=AVERAGEX(ALLSELECTED('Table'),[KILOMETRAJE TOTAL DIARIO]),1,0)


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yalanwu-msft
Community Support
Community Support

Hi,  @DannyHernandez ;

If you have a slicer , you could change the measure to this.

flag = IF(SUM('Table'[KILOMETRAJE TOTAL DIARIO])<=AVERAGEX(ALLSELECTED('Table'),[KILOMETRAJE TOTAL DIARIO]),1,0)


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

v-yalanwu-msft
Community Support
Community Support

Hi, @DannyHernandez ;

You could create a flag measure.

flag = IF(SUM('Table'[KILOMETRAJE TOTAL DIARIO])<=AVERAGEX(ALL('Table'),[KILOMETRAJE TOTAL DIARIO]),1,0)

then apply it into filter.

vyalanwumsft_0-1655690047016.png

The final show:

vyalanwumsft_1-1655690059777.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

AVERAGE MEASUREMENT DOES NOT WORK WHEN FILTERS ARE APPLIED

DannyHernandez_1-1655754436307.png

 

 

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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