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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 45 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 107 | |
| 105 | |
| 40 | |
| 33 | |
| 25 |