Remove zeros in background in CVs
Hello All,
Any ideas how I can remove these "0's" from the background in the Cubeviews? Is there any property that will make it disabled?
Hello All,
Any ideas how I can remove these "0's" from the background in the Cubeviews? Is there any property that will make it disabled?
Hi prachtiwari11,
These zeros are what OS calls as Derived Data.
These are the result of the Periodic / YTD view calculation.
So assuming that showing the YTD number does not give you the expected results, I don't think there is an out-of-the-box way to suppress this type of data but there's a workaround that could maybe work for you which is to use the conditional formatting to hide these numbers by formatting them with the same color as the cell background.
You could do so by using the conditional cell format and checking for "IsDerivedData".
Example:
If (IsDerivedData = True) Then
TextColor = White
End If
In case your Cube View is for reporting only, i.e.: not required for inputs, you could use this technique instead (as per KB article):
Introduction
Is it possible to hide the derived values that can be seen in a cube view (greyed out values)?
Step by Step Instructions
This can be done using a UD8 member.
| Dim viewMember As ViewMember = ViewMember.GetItem(api.Pov.View.MemberPk.MemberId) '=== Supress derived data === If viewMember.IsAnnotationType = False Then If api.Data.GetDataCell("U8#None").CellStatus.IsDerivedData = False Then Return api.Data.GetDataCell("U8#None") Else Return Nothing End If Else Return Nothing End If |
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.