Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Olá pessoal, Na imagem acima tenho a tabela 1 e tabela 2.
Quero buscar as informações da coluna [nome] da tabela 2, e levar para a tabela 1.
quero que fique conforme exemplo abaixo.
TABELA 1 [VALORES] TABELA 2 [nome]
10 6 a 10
15 11 a 20
20 21 a 30
15 11 a 20
21 21 a 30
34 31 a 40
Isso e possível?
Solved! Go to Solution.
Hi @EdsonGomes ,
Try this DAX measure:
#GetName =
VAR currentValue = SELECTEDVALUE('T'[Value])
RETURN
CALCULATE(VALUES('T'[Name]), FILTER('T', currentValue >= 'T'[Min] && currentValue <= 'T'[Max]))
If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Stand with Ukraine!
Here is an official way you can support Ukraine financially:
Come Back Alive foundation: https://savelife.in.ua/en/
Thank you!
Hi @EdsonGomes ,
Try this DAX measure:
#GetName =
VAR currentValue = SELECTEDVALUE('T'[Value])
RETURN
CALCULATE(VALUES('T'[Name]), FILTER('T', currentValue >= 'T'[Min] && currentValue <= 'T'[Max]))
If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Stand with Ukraine!
Here is an official way you can support Ukraine financially:
Come Back Alive foundation: https://savelife.in.ua/en/
Thank you!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 23 | |
| 14 | |
| 10 | |
| 6 | |
| 5 |