Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello All,
I have data , where i have Due days. i want to create a measure that only show me days which is >=1 .
@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
)
⭕ 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?
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |