March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello, my friends.
Tenho a seguinte situação.
Na tabela 1 tenho uma coluna com números de contrato (1000, 1001, 1002, 1003, n)
Na tabela 2 tenho uma tabela de fornecedores que podem atender vários contratos. Nesta tabela há uma coluna com os números de contratos atendidos, porém os números estão inseridos da seguinte forma em cada célula: 1000; 1003 (separados por ponto e vírgula).
Preciso inserir uma segmentação de dados pelo número do contrato (da tabela 1), e que esta consiga filtrar a tabela 2 que contém os dados aglutinados com ponto e vírgula (algo como uma CONTAINSTRING)
Alguém consegue me auxiliar nesta missão?
Solved! Go to Solution.
Hi @dmessias ,
For the single selection in the slicer, you can create a measure.
Measure = IF(ISFILTERED('TABELA 2'[Contratos]),IF(CONTAINSSTRING(MAX('TABELA 2'[Contratos]),SELECTEDVALUE('TABELA 1'[Contratos]))=TRUE(),1),1)
Put the measure into the filters of the table visual, set up show items when the value is 1.
Below is the result.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Great, @v-stephen-msft .
I was trying a solution close to the one you suggested, but I was missing some details. Thanks for the tip.
Diego
Hi @dmessias ,
For the single selection in the slicer, you can create a measure.
Measure = IF(ISFILTERED('TABELA 2'[Contratos]),IF(CONTAINSSTRING(MAX('TABELA 2'[Contratos]),SELECTEDVALUE('TABELA 1'[Contratos]))=TRUE(),1),1)
Put the measure into the filters of the table visual, set up show items when the value is 1.
Below is the result.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
12 | |
9 | |
7 |
User | Count |
---|---|
38 | |
32 | |
28 | |
12 | |
11 |