sql
html
php
iphone
css
ajax
database
linux
android
ruby-on-rails
mysql
objective-c
visual-studio
eclipse
algorithm
tsql
mvc
asp
api
postgresql
You should not use anymore the 'natural' hierarchy of a dimension (parent) to get the total but use a sum over the axis in your calculated members.
WITH MEMBER [Measures].[Percent] AS [Measures].[Result Count] / Sum( Axis(1), [Measures].[Result Count]) , FORMAT_STRING = 'percent'
That should get your 'visual' percentage.