Forum Discussion
Anonymous
4 years agoNot applicable
DAX measure returns wrong total
Hi there I have a loaded table structured as below, With this measure I got the visual below (Demand, Supply and Acc.Bal are all directly from the table), and you can see the totals at di...
- 4 years ago
Anonymous , Try measure like
ACC.BO_CNY = SUMX(Summarize(FCST_BD12, FCST_BD12[Entiy], FCST_BD12[BU], FCST_BD12[Material],"_1",MAX(FCST_BD12[Balance])*MAX(ASP[ASP_CNY])),[_1])
amitchandak
Super User
4 years agoAnonymous , Try measure like
ACC.BO_CNY = SUMX(Summarize(FCST_BD12, FCST_BD12[Entiy], FCST_BD12[BU], FCST_BD12[Material],"_1",MAX(FCST_BD12[Balance])*MAX(ASP[ASP_CNY])),[_1])
Anonymous
4 years agoNot applicable
Thanks Amit.
It still has some problem, but inspiring anyway.