Forum Discussion
Distinct Average
- 9 years ago
Hi zaforir2002
I think you have a confusion between a calculated column and a measure.
If you create the DAX measure:
AvgQty = Average(YourTable[Qty] ) and bring in this measure in a pivot table, you'll get the correct result thanks to filter context.
Hi zaforir2002
I think you have a confusion between a calculated column and a measure.
If you create the DAX measure:
AvgQty = Average(YourTable[Qty] ) and bring in this measure in a pivot table, you'll get the correct result thanks to filter context.
Thanks, Datatouille,
I have used it in a measure, not in the calculated column, but the results are same for each prod :(.
- Datatouille9 years agoSolution Sage
Do you have everything in the same table or do you bring in products from another table ?
In that case, you need to create a (1 to Many) Relationship between Products and your Quantity Table.
- zaforir20029 years agoHelper I
All is from same table Datatouille
- Datatouille9 years agoSolution Sage
Will you please share the file ? because it should work !