Forum Discussion
bhelou
5 years agoResponsive Resident
Receivable Days aging Dynamic
Hello , I Have receivalbles aging to do , i have made measures for the days still not yet received , now i am trying to make aging 30 - 90 - 180 - 360 - 720 etc ... for it as from the days shown , ...
- 5 years ago
bhelou , If it is column
calculate([Receivable Balance], filter(Table,Table[Receivable Days]<=30))
In case it is a measure
IF(([Receivable Days]) <=30,[Receivable Balance],BLANK())
- 5 years ago
bhelou , Create like
Receivable Days = IF([Status] = "Paid" , 0 , datediff( [Invoice Date],TODAY(), day))
amitchandak
5 years agoSuper User
bhelou , If it is column
calculate([Receivable Balance], filter(Table,Table[Receivable Days]<=30))
In case it is a measure
IF(([Receivable Days]) <=30,[Receivable Balance],BLANK())
bhelou
5 years agoResponsive Resident
I KNOW i have tried it , it wont work and even if i wirte it as simple to test it out :
Receivable Days 30 =
IF(([Receivable Days]) <=30 , "True","False") // it is giving all false , i think it is from the measure of the Receivable days :
Receivable Days = IF([Status] = "Paid" , 0 , FORMAT( TODAY() - [Invoice Date], "General Number")) // i dont now if it is acurate , please help amitchandak many thanks
- amitchandak5 years agoSuper User
bhelou , Create like
Receivable Days = IF([Status] = "Paid" , 0 , datediff( [Invoice Date],TODAY(), day))