Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
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
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!