Forum Discussion
How to calculate row total
Anonymous ,You if do something like that
sumx(summarize(Table,Table[Commodities],"_1",[Progress Plan]),[_1])
, You can add more level
or check with isfiltered and chnage formula
if( isfiltered(Table[Commodities]) || isfiltered(Table[Sub Commodities]), [Progress Plan],[new formula ])https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/
amitchandak and Mariusz
Thanks for your quick response. amitchandak what is "_1" and [_1]?
Best regards,
Sumit
- amitchandak6 years ago
Super User
Anonymous , I am giving a name of the column in "" and then when use it I use in [] . So we are creating the final total from row level. So try to force row-level formula to row-level, those are the group by's of summarize and then adding it up.
- Anonymous6 years agoNot applicable
amitchandak Oh, ok, got it, thank you. but it's not giving me the desired outcome. Its calculating totals at each row level correct, but not the overall total. May be I am missing something.
Best regards,
Sumit