Forum Discussion
Anonymous
4 years agoNot applicable
Create IF measure summing one column based on another column
I need a measure that states: If this Table1[company ID] = “1055”, then Do this calculation: Calculate( SUM(Table1[count]) * 0.50,Table1[PrdType] = "Unit Production") Else do this c...
- Anonymous4 years ago
I appreciate your work on this. This seems to be the same as what I had done yesterday. The measure seems to be working without errors; however, I do not get any results. I think I will break the measure apart to understand what part is breaking for my larger tables. I appreciate the assistance.
Samarth_18
Community Champion
4 years agoHI Anonymous ,
Please try this:-
ProdUnits =
IF (
MAX ( Table1[company ID] ) = "1055",
CALCULATE (
SUM ( Table1[count] ) * 0.50,
FILTER ( Table1, Table1[PrdType] = "Unit Production" )
),
CALCULATE (
SUM ( Table1[count] ),
FILTER ( Table1, Table1[PrdType] = "Unit Production" )
)
)
BR,
Samarth
- Anonymous4 years agoNot applicable
I tried this measure and although I do not get an error message for the measure, I also do not have any values returned either. The measure is completely blank in my visualization.
- Samarth_184 years ago
Community Champion
Anonymous Can you please share the sample data in text format with expected output?
- Anonymous4 years agoNot applicable
It is not allowing me to load a sample data set