You could do a calculated measure that divides e.g. Sales Price by units to get an average sales price. Something like:
[Measures].[Store Sales]/[Measures].[Sales Count]
Not sure what you are averaging but this should work for most scenarios.
There is also a function: Avg() that you can use in a calculated measure. This requires a set and has an optional numeric value parameter
Hope this helps