This is a simple one, can we have a round up MDX formula? I work a lot with rounding up decimal values, although we have a solution X - MOD(X, 1) + 1
as stated in this post, if you use a lot of this that get the formula dificult to read to others inspecting the calculation
Here is a simple example:
NonZero(
-- Roundup-> X - MOD(X, 1) + 1
(
(
[Measures].[Downstream days],
[Status.Category].[Done]
)
-
MOD(
(
[Measures].[Downstream days],
[Status.Category].[Done]
), 1) + 1
)
)
Which could be simple as:
NonZero(Roundup(
(
[Measures].[Downstream days],
[Status.Category].[Done]
)
)
Although one solution is to put the tuple in a separate measure, if you do for each different roundup calculation the user defined measures area get really bloated.