Forum Discussion
Felix_Schulte
4 years agoNew Member
Select latest rows
A background job pushes daily updates into Power BI (push dataset) via REST API. This looks similar to this: Product Version Issues Date ProdA 1.3 10 2022/07/21 ProdB 1.2 5 ...
- 4 years ago
You could create a table like
Latest Data = var maxDate = MAX('Table'[Date]) return FILTER( 'Table', 'Table'[Date] = maxDate )
johnt75
4 years agoSuper User
You could create a table like
Latest Data =
var maxDate = MAX('Table'[Date])
return FILTER( 'Table', 'Table'[Date] = maxDate )