Forum Discussion
HenryJS
5 years agoPost Prodigy
Measure Multiply Calculation
Hi all, The below 'mult' measure seems to be calculating incorrectly. 325 x 149 = 48,425 the measure returns 48,409? what is causing this error?
amitchandak
5 years agoSuper User
HenryJS , Multiplication should be done at line level. If not use values or summarize to get correct total
Sumx(Values(Table[Date]), [Multi Meaure])
or
sumx(summarize(Table, Table[Date], Table[Other grouping of visual] , "_1",[Multi Meaure]), [_1])
- HenryJS5 years agoPost Prodigy
- amitchandak5 years agoSuper User
HenryJS , If possible, Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.