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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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