Forum Discussion
Scatter Plot by each dot with each extraction
- 1 year ago
Hi Mokegubshook,
If you would like each dot to represent a different extraction while still coloring only by company, please follow below approach:
Create a new calculated column:
Date_Extraction = [Date] & " - " & [Extraction]
Then use this Date_Extraction column on the x-axis instead of plain date. This ensures that each extraction appears as a separate dot per day.
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Thanks and regards,
Anjan Kumar Chippa
Hi Mokegubshook,
Thank you for reaching out to Microsoft Fabric Community.
To make each dot in the scatter plot to be separated by extraction still summing the RIC values by day, please follow below steps:
- Confirm that your dataset has a column for extraction, this will be used to differentiate the dots.
- Since the scatter plot’s legend can only use one field, so combine Company and Extraction fields into a new field. Create a new calculated column for example like below:
Company_Extraction = [Company] & " - " & [Extraction] - In the Fields pane replace the Legend field with Company_Extraction field and keep the other feilds as they are.
This makes that each dot will be separated by extraction, while still summing RIC values by day.
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Thanks and regards,
Anjan Kumar Chippa