Forum Discussion

Simon_G's avatar
Simon_G
Frequent Visitor
1 year ago
Solved

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...
  • Deku's avatar
    Deku
    1 year ago

    replace

    SELECTCOLUMNS (
       IntersectionPointsTable, 
       "Temperature", [Temperature],
       "GHGValue1", [GHGValue1],
       "GHGValue2", [GHGValue2]
    )

    with

    CONCATENATEX(
       IntersectionPointsTable,
       [Temperature],
       ", ",
       [Temperature], ASC
    )