Forum Discussion
Anonymous
2 years agoNot applicable
Bug on a total ?
Hi! I have this problem: The auto total row on this table, and only for this column, show a number that is not correct. I'm probably not seeing the error in front of my nose, s...
- 2 years ago
You will have to handle the DAX little differently! If you can share your measure, I can try fixing it for you. Meanwhile, Check out the video below.
miTutorials
Super User
2 years agoYou will have to handle the DAX little differently! If you can share your measure, I can try fixing it for you. Meanwhile, Check out the video below.
Anonymous
2 years agoNot applicable
Hi,
this is the meaasure:
IF (
ISBLANK([CI_Iva]) || [CI_Iva] = 0,
0,
IF (
[CI_Incassato] + [CI_Dovuto] <> 0,
DIVIDE([CI_Incassato] * [CI_Iva], [CI_Incassato] + [CI_Dovuto], 0)
)
)