Forum Discussion
4pepesanchez4
4 years agoFrequent Visitor
search for a value and return multiple fields
Good afternoon: First of all, thank the people who answer it. What i need to do is the following: If they match a field (country) return me ALL the fields that meet the condition (city) ...
- 4 years ago
Hi 4pepesanchez4
You can use a table or matrix visualMeasure
Cities = CONCATENATEX ( Countries, Countries[city], " | " ) - 4 years ago
Hi 4pepesanchez4
Please use thisCities = CONCATENATEX ( Ventas_Compana_Google, Ventas_Compana_Google[Descripcion], " | " )
tamerj1
Community Champion
4 years agoHi 4pepesanchez4
You can use a table or matrix visual
Measure
Cities =
CONCATENATEX (
Countries,
Countries[city],
" | "
)