Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Boa noite
Tenho uma tabela com nome de atletas e outra com o valor maximo de velocidade. Preciso levar para um card quem foi o atleta mais rápido (seu nome) e o valor da sua velocidade
Solved! Go to Solution.
@rafaelpintto Try this:
Vel Max =
VAR MaxSpeed =
CALCULATE ( MAX ( GPS[Velocidade maxima [km/h] ), REMOVEFILTERS ( GPS ) )
VAR AthletheAtTheMaxSpeed =
CALCULATE (
SUMMARIZE ( GPS, GPS[Athleta),GPS[Velocidade maxima [km/h] ),
GPS[Velocidade maxima [km/h] = MaxSpeed,
REMOVEFILTERS ( GPS )
)
VAR Result =
CONCATENATEX (
AthletheAtTheMaxSpeed,
GPS[Athleta) & "-" & GPS[Velocidade maxima [km/h],
UNICHAR ( 10 )
)
RETURN
RESULT
@rafaelpintto Try this:
Vel Max =
VAR MaxSpeed =
CALCULATE ( MAX ( GPS[Velocidade maxima [km/h] ), REMOVEFILTERS ( GPS ) )
VAR AthletheAtTheMaxSpeed =
CALCULATE (
SUMMARIZE ( GPS, GPS[Athleta),GPS[Velocidade maxima [km/h] ),
GPS[Velocidade maxima [km/h] = MaxSpeed,
REMOVEFILTERS ( GPS )
)
VAR Result =
CONCATENATEX (
AthletheAtTheMaxSpeed,
GPS[Athleta) & "-" & GPS[Velocidade maxima [km/h],
UNICHAR ( 10 )
)
RETURN
RESULT
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
12 | |
9 | |
9 | |
9 |
User | Count |
---|---|
21 | |
14 | |
14 | |
13 | |
13 |