Forum Discussion
CarlSagan
Helper II
1 year agoMany to many relationship causing summation to rollup incorrectly
I have a dimension table called investment_selections and a transactional table called assets. When I put asset records in a table that does not contain investment_selection properties, the running t...
Greg_Deckler
Community Champion
1 year agoCarlSagan What is your DAX formula?
CarlSagan
Helper II
1 year agoSimple
assets_running_total_date_table =
CALCULATE(
[assets_total],
FILTER(
ALL('Date'[Date]),
'Date'[Date] <= MAX('Date'[Date])
)
)