Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
User | Count |
---|---|
22 | |
14 | |
11 | |
7 | |
5 |
User | Count |
---|---|
24 | |
22 | |
20 | |
15 | |
10 |