The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
My PBI file :-
https://www.dropbox.com/s/2h2nt1vf56uxgrx/PBT_V2021_396%20TI_SI_GL%20SAMPLE.pbix?dl=0
Paul
Solved! Go to Solution.
Hello @admin11 ,
You can simply filter out the options- 1-31 Day and 32 - 61 Day form the Filter section as below:
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"
Hello @admin11 ,
You can simply filter out the options- 1-31 Day and 32 - 61 Day form the Filter section as below:
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"