Forum Discussion
Anonymous
3 years agoNot applicable
Convert a table into a card
Basically I need to get the total of a table and present it as a card visual. The idea is that I have been given a power BI with multiple visual tables on it and I want to get ALL the Tota...
v-yanjiang-msft
3 years agoCommunity Support
Hi Anonymous ,
If in the Total row of the table visual, the measure can get the correct result 9, then directly put it in a card visual.
If not, modify the formula like this:
Measure =
VAR _T =
ADDCOLUMNS ( 'Table', "measure", "post your original formula here" )
RETURN
SUMX ( _T, [measure] )
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.