Hi @bangorkeith ,
Could you please share more details about your scenario? Which columns would you like to set as the X and Y axis of the line chart?
I assume you will only need to use Value as Y axis, so basically you will need to generate a two columns collection with only Measure1 values and Measure2 values. So below will be the basic formula:
ClearCollect(col1, [1,2,3,4,5]);ClearCollect(col2, [6,7,8,9,10]);Clear(col3);
ForAll(Sequence(CountRows(col1),1) As aaa,Collect(col3, {Measure1:Last(FirstN(col1,aaa.Value)).Value,Value2:Last(FirstN(Measure2,aaa.Value)).Value}))
Now we could get a 2 columns collection and use as the Items of the chart:


Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.