Hi
I am wondering if anyone can help.
I managed to create a measure that calculates the total contracts exposure using DAX formula calculate with a filter.
Even though the formula works there is no way to apply addtional filters to the measure either with a slicer or in the visual panel.(the filter parameter seems to overwrite other filters)
The below is the function I am using if needed, is there any work around to this?
Exposure = calculate(
sum(
Components[NetLJ]
)
,FILTER(ALL (Components),Components[DateLJ]<=max(Components[DateLJ]))
)