Forum Discussion
sclencioco
Helper I
9 years agototals per column
Hello, I need to get the total percentage, but it appears that the values on total is inaccurate. Here are some measurements that I created: actual = COUNT('2015_POSdata'[COUN...
- Anonymous9 years ago
Hi sclencioco,
Yes, I think you are in the right direction, you can refer to below formula to create a new table to get the summary records.
Formula:
Summary Table= ADDCOLUMNS( SUMMARIZE('2015_POSdata','2015_POSdata'[MonthName], "actual",COUNT('2015_POSdata'[COUNT]), "no of stations",CALCULATE(DISTINCTCOUNT('2015_POSdata'[POS-Active Stations]),ALLEXCEPT('2015_POSdata','2015_POSdata'[MonthName])), "monthend day",CALCULATE(DISTINCTCOUNT('2015_POSdata'[DATE]), ALLEXCEPT('2015_POSdata','2015_POSdata'[MonthName]))), "expected",[no of stations] * [monthend day],"%age",DIVIDE([actual],[expected]) )Regards,
Xiaoxin Sheng
sclencioco
Helper I
9 years agoI am considering creating a separate table just to reflect the total.