Forum Discussion
Simon_G
1 year agoFrequent Visitor
Find and return intersection points between lines
Hello, I'm working on an analysis comparing scenarios and I would like to find the intersection point(s) between lines. Below is an example of a graph I can plot and I would like to calculate at wha...
- 1 year ago
replace
SELECTCOLUMNS ( IntersectionPointsTable, "Temperature", [Temperature], "GHGValue1", [GHGValue1], "GHGValue2", [GHGValue2] )with
CONCATENATEX( IntersectionPointsTable, [Temperature], ", ", [Temperature], ASC )
Simon_G
1 year agoFrequent Visitor
Thank you for the reply. Unfortunatly I still have an error "The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value"
Deku
1 year agoSuper User
replace
SELECTCOLUMNS (
IntersectionPointsTable,
"Temperature", [Temperature],
"GHGValue1", [GHGValue1],
"GHGValue2", [GHGValue2]
)with
CONCATENATEX(
IntersectionPointsTable,
[Temperature],
", ",
[Temperature], ASC
)- Simon_G1 year agoFrequent Visitor
Looks like it worked in the end. I just had to change Max to Sum.
Thank you!