Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Ramachandran
Helper III
Helper III

Scatter chart - Show all the values

Hi, Someone assist me,

I have two dimensions (Country and City) and two fact tables like Fact1 and Fact2.

I'm trying to create scatter chart based on Fact1 (x) and Fact2 (y) values. but few of the Fact2 (Y) values are blank so it not showing all the country on the visual. For this case, Is it possible to show all the Country value? Currently, it is showing 4 countries because of x and y values.

If it is any blank value for X axis and Y axis should be consider as zero. How I can add dummi (zero) value for this? 

 

My current data is look like, 

Ramachandran_0-1620385207369.png

Also, I attached .pbix file here Scatter chart.pbix - Google Drive

 

thanks,

Ram

 

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @Ramachandran  ,

Here are the steps you can follow:

1. Create calculated column.

 

Column =
var _1=
CALCULATE(MAX('Fact2'[Y]),FILTER(ALL(Fact2),[Country]=EARLIER([Country])))
return
DIVIDE([X],_1)

 

Result:

v-yangliu-msft_2-1620722375922.png

2. Create measure.

 

flag =
IF(MAX('Fact1'[Column])=BLANK(),BLANK(),
"X"&"-"&FORMAT(MAX('Fact1'[Column]),"Percent"))

 

3. Result:

v-yangliu-msft_0-1620722479315.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @Ramachandran  ,

Here are the steps you can follow:

1. Create calculated column.

 

Column =
var _1=
CALCULATE(MAX('Fact2'[Y]),FILTER(ALL(Fact2),[Country]=EARLIER([Country])))
return
DIVIDE([X],_1)

 

Result:

v-yangliu-msft_2-1620722375922.png

2. Create measure.

 

flag =
IF(MAX('Fact1'[Column])=BLANK(),BLANK(),
"X"&"-"&FORMAT(MAX('Fact1'[Column]),"Percent"))

 

3. Result:

v-yangliu-msft_0-1620722479315.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Ramachandran ,

Create a measure like sum(Fact2[Y])+0  and use

 

Thank you for your quick response and it is working fine.

I have one more question, I'm going to create percentage column based on x and y value. Is it possible to apply same thing in percentage field (new measure)?

For example, X - 65% (new measure), Y-75% (new measure)

 

thanks,

Ram

 

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.