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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
sandee
Helper I
Helper I

Table Function - Need Help

Hello All,

 

I have data , where i have Due days. i want to create a measure that only show me days which is >=1 . 

 

Logic = FILTER('Table Aging,
Table Aging'[Days Due] >1)
 
but this i can not show in metrics table. since Filter function is a connector and will not show any result if using naked.
please advise ...
2 REPLIES 2
Fowmy
Super User
Super User

@sandee 

If you need a measure to count the record then: 

Logic = 
COUNTROWS(
FILTER(
    'Table Aging,
    Table Aging'[Days Due] >1
)
)

otherwise click on New Table in the modeling tab and paste

Logic Table = 

FILTER(
    'Table Aging,
    Table Aging'[Days Due] >1
)
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Thank u Fowmy, it worked , but i got the complete table, what if i want one column only "Due Days >=1. should i use Value and Filter?

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors