Forum Discussion
Totals not adding up correctly for certain Purchase orders
- Anonymous3 years ago
Hi Anonymous ,
According to my understanding, "272830" should only appear once in the expected results. Then you can use the AVERAGE function to get the desired result.
Below is a measure. Your 21,672,164 is because you added an extra 76,303. If I understand wrong, please explain.
Correct value = var _table=DISTINCT(SUMMARIZE('Table',[Client PO number],[PO Fee 3-LC])) return SUMX(_table,[PO Fee 3-LC])Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
According to my understanding, "272830" should only appear once in the expected results. Then you can use the AVERAGE function to get the desired result.
Below is a measure. Your 21,672,164 is because you added an extra 76,303. If I understand wrong, please explain.
Correct value = var _table=DISTINCT(SUMMARIZE('Table',[Client PO number],[PO Fee 3-LC]))
return SUMX(_table,[PO Fee 3-LC])
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous3 years agoNot applicable
Thank you Stephen. This fixed the issue. You ROCK!