How to use filter when creating calculated column in Power BI?
问题 Filter cannot be used in calculated columns, then how can I simply create a column in DAX that would pick up a value based on maximum claimID and maximum DateCreated ? The result should be like this: 回答1: Filters can be used in calculated columns. Just don't expect them to be responsive to slicers. In this case, it is probably more efficient computationally not to use a FILTER function in favor of simple CALCULATE arguments: TotalIncurredMaxDate = VAR MaxDate = CALCULATE ( MAX ( Table1