Forum Discussion
HI DDrider ,
Have you tried using the Scale formatting option? since you have ExcelUseScale=TRUE, setting the right scale might do the trick instead of having to Multiply the GetDataCell() result.
- DDrider7 months agoNew Contributor III
Thanks for the reply. Unfortunately scale won't work because I need the number to become larger.
My scale is set to 0 right now (to override other scale settings in the cube view), and that is the only way for the proper number to appear in the OneStream view. If I change the scale, it won't appear correctly within the OneStream view.
If I could apply a scale to the Excel view and no scale to the OneStream view, that would accomplish the objective, but I don't believe it's possible.
- KarlT7 months agoContributor III
Have you tried setting the ExcelUseScale to false for that row/column to see if that solves it?
- DDrider7 months agoNew Contributor III
If set to false, it defaults to scale = 0 and doesn't change since scale is set to 0 in the column formatting..
- aformenti7 months agoContributor II
Looking at the GetDataCell expression, is this accurate? Looks like you have a misplace braket:
GetDataCell((Divide(CVC(CYAct)-CVC(PYAct), CVC(PYAct)))*100):Name(PY % Var)
alternatively, you could try multiplying the numerator instead:
GetDataCell(Divide((CVC(CYAct)-CVC(PYAct))*100, CVC(PYAct))):Name(PY % Var)
- DDrider7 months agoNew Contributor III
Thank you, unfortunately either calculation still ignores the *100. May not be possible to apply multiplication to CVMath.
Related Content
- 8 months ago
- 6 months ago
- 2 months ago
- 2 years ago