Forum Discussion
idontexist
8 years agoHelper I
Calculate several numeric values
Hi guys, I need to calculate values like the following: Plan Fact New measure 15 15 15 15 15 15 15 15 15 ...
idontexist
8 years agoHelper I
v-jiascu-msft
8 years agoMicrosoft Employee
Hi idontexist,
Hasonevalue could work. Please see the example below. What's your report like? Can you share a snapshot?
Measure 6 =
IF (
HASONEVALUE ( 'DimProduct'[ClassName] ),
SUM ( FactSales[SalesQuantity] ),
0
)
Best Regard,
Dale