Tuple of two measures cannot be used, what is the alternative?

Hello,

We have a report that shows the “Project” in Rows. In Columns, we have two measures, like in the screenshot:

image

How would I go about having a condition in one single measure:

Empty Planned PI AND Empty Proposed PI issues should be shown.

where:

Empty Planned PI is a tuple: ([Planned PI].[(none)], [Measures].[Issues created])

and

Empty Proposed PI is another tuple: ([Proposed PI].[(none)], [Measures].[Issues created])

Thank you!

Mihai,

You can create a tuple from several dimensions. In your case the solution is to use the tuple like this:

([Planned PI].[(none)], 
[Proposed PI].[(none)],
[Measures].[Issues created])

Kindly,
Janis, eazyBI support

1 Like

Thank you, that works great!