Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am new to the Power BI and I want to create a scatter chart with two date series. Each one should have a different color.
The first one has the columns: X1, Y1
The second one: X2, Y2
My table contains four columns X1, Y1, X2 and Y2.
I fail with inserting the second data series to the scatter chart. The only idea I have got is to make two transparent diagrams overeach other.
Thank you,
Solved! Go to Solution.
Hi @GIvanov ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2)Click "transform data" to enter the power query editor, then select [y1] and [y2] columns, click to transpose other columns, then select [Attribute] and [Value] columns, click to transpose other columns, and then click close and apply.
(3)We can create a calculated column.
Legend = SWITCH(TRUE(),
AND(CONTAINSSTRING('Table'[Attribute-x],1) ,CONTAINSSTRING('Table'[Attribute-y],1)),1,
AND(CONTAINSSTRING('Table'[Attribute-x],2) ,CONTAINSSTRING('Table'[Attribute-y],2)),2)
(4)Then we can create a table.
Table 2 = FILTER('Table','Table'[Legend]=1 || 'Table'[Legend]=2)
(5) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @GIvanov ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2)Click "transform data" to enter the power query editor, then select [y1] and [y2] columns, click to transpose other columns, then select [Attribute] and [Value] columns, click to transpose other columns, and then click close and apply.
(3)We can create a calculated column.
Legend = SWITCH(TRUE(),
AND(CONTAINSSTRING('Table'[Attribute-x],1) ,CONTAINSSTRING('Table'[Attribute-y],1)),1,
AND(CONTAINSSTRING('Table'[Attribute-x],2) ,CONTAINSSTRING('Table'[Attribute-y],2)),2)
(4)Then we can create a table.
Table 2 = FILTER('Table','Table'[Legend]=1 || 'Table'[Legend]=2)
(5) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
70 | |
68 | |
43 | |
34 | |
26 |
User | Count |
---|---|
86 | |
49 | |
45 | |
38 | |
37 |