Forum Discussion
wbhite
3 years agoHelper I
Issue 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
3 years agoCommunity Champion
wbhite Maybe try this:
SqFt x Qty for All Shown =
SUMX(
ALLSELECTED(POs),
Products[Sq Ft] * 'PO Data'[Qty]
)wbhite
3 years agoHelper I
Sorry, that produces the same results.