Forum Discussion
Need same information
- Anonymous2 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.
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.