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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
dancarr22
Helper V
Helper V

How to show a correlation matrix from the results in a single table?

Hello,

 

Is there a way to create a correlation matrix from the results in a single table?  Please see dataset below.

Basically, we have a list of currencies for a given date -- and what to compare all currencies against each other.

 

Thanks,

Dan

FX.PNG

1 ACCEPTED SOLUTION
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @dancarr22,

There is no such a direct visual in Power BI. I personally suggest you create a correlation matrix using R statement. First, you need to install R, then enable R visual following by the steps in this article.

Actually, I am confused with which fields should used to create the correlation. For example, we use the following sample data in R.

# Load data
data("mtcars")
my_data <- mtcars[, c(1,3,4,5,6,7)]
# print the first 6 rows
head(my_data, 6)


We will get the correlation matrix using the code. More details, please see this blog.

res <- cor(my_data)


You can also use the custom visual Correlation plot, you can download the sample table, and create your own according to the sample.

Best Regards,
Angelia

View solution in original post

1 REPLY 1
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @dancarr22,

There is no such a direct visual in Power BI. I personally suggest you create a correlation matrix using R statement. First, you need to install R, then enable R visual following by the steps in this article.

Actually, I am confused with which fields should used to create the correlation. For example, we use the following sample data in R.

# Load data
data("mtcars")
my_data <- mtcars[, c(1,3,4,5,6,7)]
# print the first 6 rows
head(my_data, 6)


We will get the correlation matrix using the code. More details, please see this blog.

res <- cor(my_data)


You can also use the custom visual Correlation plot, you can download the sample table, and create your own according to the sample.

Best Regards,
Angelia

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors