Forum Discussion

by_tiago's avatar
by_tiago
New Member
2 years ago
Solved

Need same information

Hello everyone! I’m in need of some help. Currently, I’m trying to create a card using the new visual in Power BI, the “New Card”. However, I’m facing a problem: the information displayed on the card...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi by_tiago 

     

    amitchandak Thank you very much for your prompt reply, please allow me to share some content here.

     

    As the amitchandak  says, the first card does not affect the second card.

     

    They show the first value of each card.

     

    In the "operador" column, the first value is "Ed" in alphabetical order.

     

    Creating a slicer is a good way to do this. It dynamically displays the data you want to display.

     

     

    If you just want to display the first data statically, you can choose to create a measure.

     

    Measure Operador = 
    CALCULATE(
        SELECTEDVALUE('Table'[operador]), 
        FILTER(
            'Table', 
            'Table'[processos] = "MH-01"
        )
    )

     

    Here is the result.

     

     

    Regards,

    Nono Chen

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