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
admin11
Memorable Member
Memorable Member

How to make my debtor list reduce number of row by filter only those outstanding > 62 days

Hi All

i have debtor list , which is very long , i only want to focus on those customer outstanding equal or more then 62 days.

Hope some one can help me create a Flag_62_Day , so that my table will be reduce number of row to min , i can focus on those long over due customer for chase payment. 

admin11_0-1617694102939.png

My PBI file :-

https://www.dropbox.com/s/2h2nt1vf56uxgrx/PBT_V2021_396%20TI_SI_GL%20SAMPLE.pbix?dl=0

 

Paul

1 ACCEPTED SOLUTION
PC2790
Community Champion
Community Champion

Hello @admin11 ,

 

You can simply filter out the options- 1-31 Day and 32 - 61 Day form the Filter section as below:

PC2790_0-1617697781257.png

Also make sure to lock the filter after you are done with your selection.

 

If you want to go with the flag option, you will have to create a calculated column that will utilize extra memory. Totally depends on you which approach you want to take.Here is a way to do that:

1) create a calculated column using the formula:

Flag_62_Day = 
var _datediff=DATEDIFF(AR[AR Invoice Date],TODAY(),DAY)
return
if(_datediff>=62,"True","False")

2) Use it as slicer/filter and filter it with values as "True"

 

 

View solution in original post

1 REPLY 1
PC2790
Community Champion
Community Champion

Hello @admin11 ,

 

You can simply filter out the options- 1-31 Day and 32 - 61 Day form the Filter section as below:

PC2790_0-1617697781257.png

Also make sure to lock the filter after you are done with your selection.

 

If you want to go with the flag option, you will have to create a calculated column that will utilize extra memory. Totally depends on you which approach you want to take.Here is a way to do that:

1) create a calculated column using the formula:

Flag_62_Day = 
var _datediff=DATEDIFF(AR[AR Invoice Date],TODAY(),DAY)
return
if(_datediff>=62,"True","False")

2) Use it as slicer/filter and filter it with values as "True"

 

 

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.