Forum Discussion
wbhite
Helper I
3 years agoIssue with ALLSELECTED (or something else?)
Hello all, Referencing the screenshot provided, I need a measure to show the cumulative total for "Sq Ft * Qty" on all rows. My current measure simply shows a row-by-row calc, but what I want to se...
Greg_Deckler
Community Champion
3 years agowbhite Maybe try this:
SqFt x Qty for All Shown =
SUMX(
ALLSELECTED(POs),
Products[Sq Ft] * 'PO Data'[Qty]
)- wbhite3 years ago
Helper I
Sorry, that produces the same results.