Today I tried to filter out a row with no caption from a result set.
In MDX Sample Application, I landed on this solution:
select {[Measures].[invoiced hours],[Measures].[Total hours]} on 0,
non empty filter([Group].members,
(len([Group].currentmember.Properties("Caption"))
Read More