Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don'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.

Reply
rafaelpintto
Regular Visitor

Maior Valor

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 IMG-9596.jpg

1 ACCEPTED SOLUTION
AntrikshSharma
Super User
Super User

@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

View solution in original post

1 REPLY 1
AntrikshSharma
Super User
Super User

@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

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.