Forum Discussion
Measure is creating duplicate rows in a table
Release CapEx = MAX( 0,'Baseline'[Baseline - CapEx] - [Forecast CapEx])
Anonymous , Couple of reasons I can think of.
1. These measures are coming from different tables and one of them have a problem with project join
2. Both table has project ID, and there is a common project table(Project Dimension) and you took project or project name from a fact, not from Dimension
3. One of the measures is using all/all selected. even possible when they are from the same table
6 Replies
- Ashish_MathurSuper User
Hi,
Does this work?
=if(isblank('Baseline'[Baseline - CapEx]),blank(),MAX( 0,'Baseline'[Baseline - CapEx] - [Forecast CapEx]))
- AnonymousNot applicable
Ashish_Mathur It works in terms of producing the numbers I want, but the solution I found earlier was to bring fields in from a table other than my project fact table. Thank you.
- AnonymousNot applicable
Hi Anonymous
Can you please provide more info with screenshots, input and required output in table format for the community so that you ask can be better understood and resolved quickly.
- AnonymousNot applicable
Anonymous No, I can't actually, due to confidentiality. I was hoping that someone would recognize the behavior and maybe provide some clues as to what could be causing this behavior.
If that's not you; thanks anyway for trying.
- amitchandakSuper User
Anonymous , Couple of reasons I can think of.
1. These measures are coming from different tables and one of them have a problem with project join
2. Both table has project ID, and there is a common project table(Project Dimension) and you took project or project name from a fact, not from Dimension
3. One of the measures is using all/all selected. even possible when they are from the same table