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! Don't miss your chance! Learn more
Hello experts,
I tried the following code in R Studio which run seamlessly
values<-c(1,2,3,4,5)
df10<-data.frame(values)
S1<-as.list(df10$values)
r<-3
result<-data.frame(combn(S1,r))
result
but the same code returns the following error
DataFormat.Error: We cannot convert this value from its .RData representation.
However, if I alter the code to this in PBI
result<-data.frame(combn(c(1,2,3,4,5),3)) result
it works which means that POWER BI eliminates the possibilites of passing parameters to a R code. Do you know what is the work around to this?
Solved! Go to Solution.
Work around
values<-c(1,2,3,4,5) df10<-data.frame(values) library(dplyr) df11<-combine(df10$values) r<-3 result<-data.frame(combn(df11,r)) result
Work around
values<-c(1,2,3,4,5) df10<-data.frame(values) library(dplyr) df11<-combine(df10$values) r<-3 result<-data.frame(combn(df11,r)) result
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 69 | |
| 59 | |
| 47 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 106 | |
| 102 | |
| 38 | |
| 27 | |
| 27 |