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
Juliano845
Frequent Visitor

Show data filtered in a table

Hello everyone,

 

Please, I need help with this problem:

 

I'm trying to filter data from this table and show this information in a visual table 

 

namehourcall time
Joseph9:30delivered5
Anthony11:00delivered35
Mary14:00abandoned32

 

so I need the information from the line where the call has been delivered and the time over than the 30

 

like this:

namehourcalltime
    
Anthony11:00delivered35
    

 

I created a visual table and tried to filter using :

 

Medida = FILTER('Table ', 'Table'[Call]= "Delivered" && 'Table'[time]<30 )
 
could somebody help me please? Thank you.
1 ACCEPTED SOLUTION
johnt75
Super User
Super User

You could create a measure like

Row is visible = IF( SELECTEDVALUE('Table'[call]) = "delivered" && SELECTEDVALUE('Table'[time]) >= 30, 1)

then add that as a filter to your visual to show only rows where it is 1

View solution in original post

2 REPLIES 2
v-zhangti
Community Support
Community Support

Hi, @Juliano845 

 

In response to the addition of @johnt75 's answer, put Measure into Filter and set it equal to 1 to get the result you want.

vzhangti_0-1649061660596.png

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

johnt75
Super User
Super User

You could create a measure like

Row is visible = IF( SELECTEDVALUE('Table'[call]) = "delivered" && SELECTEDVALUE('Table'[time]) >= 30, 1)

then add that as a filter to your visual to show only rows where it is 1

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.