This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello everyone, I have a doubt.
I need the following, if column 3 has event "Envio de Comunicação", then in column Is Comunicação, it should appear "Envio de Comunicação" for all the ids that have the event happening.
For example, id 1 should have "Envio de Comunicação" in both rows instead of only having when column 3 is "Envio de Comunicação". Once the event happens, all the corresponding ids should have "Envio ..." Or " Não envio...:"
Thank you in advance!
Solved! Go to Solution.
Hi @lmcpinto ,
You can create a calculated column by below code.
Is Comunicação =
VAR _LIST =
CALCULATETABLE (
VALUES ( 'Table'[Column3] ),
ALLEXCEPT ( 'Table', 'Table'[Column1] )
)
RETURN
IF (
"Envio de Comunicação" IN _LIST,
"Envio de Comunicação",
" Não Envio de Comunicação"
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @lmcpinto ,
You can create a calculated column by below code.
Is Comunicação =
VAR _LIST =
CALCULATETABLE (
VALUES ( 'Table'[Column3] ),
ALLEXCEPT ( 'Table', 'Table'[Column1] )
)
RETURN
IF (
"Envio de Comunicação" IN _LIST,
"Envio de Comunicação",
" Não Envio de Comunicação"
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you!!!!!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 27 | |
| 23 | |
| 19 |