Forum Discussion
bignadad
Helper I
2 years agoMeasures with no start date
I am working with leger entries and normally I can user the following to filter out the dates I want. ..02/01/2024 This would show me all records with the end date less than Feb 1 2024 Bu...
- 2 years ago
bignadad Best not to use the [Date].[Date] notation. Instead:
Better RT =VAR __Date = MAX(MasterDate[Dates])VAR __Table = FILTER(ALLSELECTED(MasterDate),MasterDate[Dates] <= __Date)RETURNSUMX(__Table,[Invoiced Value])
Greg_Deckler
Community Champion
2 years agobignadad Not sure I am tracking this. Are you saying you want a running total? If that is the case: Better Running Total - Microsoft Fabric Community