Forum Discussion

ofrede's avatar
ofrede
New Member
4 years ago
Solved

Multiple Y-axis from Cube data

Hi,   I have a cube to which I connect. It has a rather simple fact with some meassures:   Prices: Date Value   The Index is then connected to my Commodities dimension: Commodities: Name  ...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi ofrede ,

     

    You may try to add a measure to "seperate" the smallest and the biggest value like this:

    Secondary = 
    var _sum=SUM('Table'[Value])
    return IF(_sum<2,_sum,BLANK())

     

    Or enable the Zoom slicer options:

     

    Best Regards,
    Eyelyn Qin
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.