Forum Discussion
Gabriel_Largura
5 years agoFrequent Visitor
Need Help
I have the table below: and I need to generate a new table where I define the value of line 1 and the others are searched in the column 'Prox Ponto', below an example Result ...
Gabriel_Largura
5 years agoFrequent Visitor
thank you v-kelly-msft
but still not the desired result...
I would like a result "similar" to this calculation
'tableresult' =
line 1 = "35311-512776-512777"
line 2 = lookupvalue('table'[Prox Ponto],'table'[Indice],line 1)
line 3 = lookupvalue('table'[Prox Ponto],'table'[Indice],line 2)
line 4 = lookupvalue('table'[Prox Ponto],'table'[Indice],line 3)
.....
WHILE lookupvalue('table'[Prox Ponto],'table'[Indice],line X) <> BLANK()
- v-kelly-msft5 years agoCommunity Support
Hi Gabriel_Largura ,
Create a column as below:
Lookupvalue = LOOKUPVALUE('Table'[Prox Ponto],'Table'[Indice],'Table'[Indice],"35311-512776-512777")Then create a table as below:
Table 3 = DISTINCT(UNION(ROW("Result","35311-512776-512777"),FILTER(VALUES('Table'[Lookupvalue]),'Table'[Lookupvalue]<>BLANK())))And you will see:
For the related .pbix file,pls see attached.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!