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.
Tenho uma lista de reservas que passam por vários estágios, eu preciso ter em todas as linhas da reserva a informação se ela passou pelo estágio "Cotação". É importante que o SIM esteja em todas as linhas da mesma reserva.
Obrigado!
Solved! Go to Solution.
Hi @RodrigoMello93 ,
You can create a calculated column as below to get it, please find the details in the attachment.
Reserva passou por cotacao =
VAR _count =
CALCULATE (
COUNT ( 'Table'[Estagio] ),
FILTER (
'Table',
'Table'[Reserva] = EARLIER ( 'Table'[Reserva] )
&& 'Table'[Estagio] = "Cotacao"
)
)
RETURN
IF ( NOT ( ISBLANK ( _count ) ), "Yes", "No" )
Best Regards
Hi @RodrigoMello93 ,
You can create a calculated column as below to get it, please find the details in the attachment.
Reserva passou por cotacao =
VAR _count =
CALCULATE (
COUNT ( 'Table'[Estagio] ),
FILTER (
'Table',
'Table'[Reserva] = EARLIER ( 'Table'[Reserva] )
&& 'Table'[Estagio] = "Cotacao"
)
)
RETURN
IF ( NOT ( ISBLANK ( _count ) ), "Yes", "No" )
Best Regards
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 |
---|---|
86 | |
78 | |
54 | |
39 | |
35 |
User | Count |
---|---|
102 | |
84 | |
48 | |
48 | |
48 |