Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi All,
I'm trying to chart an Electrocardiogram from a value that contains 2500 values separated by a space. My dataset looks like this:
I'm trying to create a chart with the numbers in the cell and a fixed X-axis value (let's say 2,000). My chart should look like this:
I have tried using split.text and Generate series in DAX, but since this is medical data, I want to make sure that if for some reason one data point doesn't have 2,500 points, that I don't mess up the whole thing. What could be the best way to create this graph?
Thanks!
Solved! Go to Solution.
Hi @Edisonsepulveda ,
According to your description, here's my solution.
Sample:
1. Replace value in Power Query. For the Value column, replace space to "|".
2.Create a calculated column.
PathNo =
PATHLENGTH ( [Value] )
3.Create a new table.
Table 2 =
GENERATESERIES ( 1, MAX ( 'Table'[PathNo] ), 1 )
4.Create a measure.
Measure =
CONVERT (
PATHITEM ( SELECTEDVALUE ( 'Table'[Value] ), MAX ( 'Table 2'[Row] ) ),
INTEGER
)
Put Row column in X-axis and measure in Y-axis, get the correct result.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Edisonsepulveda ,
According to your description, here's my solution.
Sample:
1. Replace value in Power Query. For the Value column, replace space to "|".
2.Create a calculated column.
PathNo =
PATHLENGTH ( [Value] )
3.Create a new table.
Table 2 =
GENERATESERIES ( 1, MAX ( 'Table'[PathNo] ), 1 )
4.Create a measure.
Measure =
CONVERT (
PATHITEM ( SELECTEDVALUE ( 'Table'[Value] ), MAX ( 'Table 2'[Row] ) ),
INTEGER
)
Put Row column in X-axis and measure in Y-axis, get the correct result.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
89 | |
87 | |
81 | |
64 | |
49 |
User | Count |
---|---|
123 | |
109 | |
87 | |
67 | |
66 |