Forum Discussion

FM's avatar
FM
New Contributor III
3 years ago

Cube View NumberFormat for millions

Hello, Is there a way to make cells display numerical data in the millions of dollars amount? As an example 1,500,000 would be displayed as 1.5 I have looked around but did not find much informat...
  • Leasa's avatar
    Leasa
    3 years ago

    Hi, then you can try the conditional formatting.

    For example, you can choose to only apply the scale to the rows without "percentage" in the row names using the below: 

    If (RowName DoesNotContain 'percentage') Then
    Scale = 6, NumberFormat = N1

    End If