Forum Discussion
alcakdata
3 years agoFrequent Visitor
AR aging report with dynamic date selection
Hello! I need to prepare an AR aging report based on brackets (30-60, 60-90 etc), dynamically for a selected date. I have entry dates for all the sales & payments in a single table, and my invoices ...
Mahesh0016
3 years agoSuper User
alcakdata
Create Measure :
30-60 =
VAR SelectedDate = max(slicer[date])
RETURN
calculate (
[Total Sales],
filter(
Allselected(entry dates),
datediff( entry dates,SelectedDate ,60)<61
&&
datediff( entry dates,SelectedDate ,30)>=30
)
)
alcakdata I hope this helps you!THANK YOU!!