AllPriorInYearInclusive works according to the frequency of the member you're appending it to. So if you put it on a quarter member, you're asking for "all the QUARTERS in the year previous to this", and you'll get a total for the full quarter.
The YTD reversal is derived data, so you can hide it with conditional formatting:
If (IsDerivedData = true) Then
TextColor = White
BackgroundColor = White
end if
I don't know how you'd build the exact CV you're asking for, I have a feeling there is a simple solution that is escaping me; at worst, you can resort to an XFBR or Custom Member List to calculate the values you need.