Forum Discussion

selwynvr's avatar
selwynvr
Frequent Visitor
2 years ago
Solved

ALLNOBLANKROW

Hi all I am using ALLNOBLANKROW because it removes the blanks nicely fom the related table. I however would like the Slicer filter at the top of my report (UW month) to also limit the results. Is ...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi selwynvr ,

     

    You can try the following steps.
    1. Create a calculated table.

    Table 2 = 
    DISTINCT('Table'[UW Month])


    2. create MEASURE.

    MEASURE = 
    VAR _num1 =
        VALUE ( LEFT ( MAX ( 'Table'[UW Month] ), 2 ) )
    VAR _num2 =
        VALUE ( LEFT ( MAX ( 'Table 2'[UW Month] ), 2 ) )
    RETURN
        IF ( _num1 <= _num2, 1 )


    3. Filter the data with a MEASURE value of 1.

     

    If your Current Period does not refer to this, please clarify in a follow-up reply.

     

    Best Regards,

    Clara Gong

    If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.