Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I am trying to create a new column ("pct_change") within an existing dataframe that was imported from SQLServer.
The following code worked in R Studio:
library(dplyr)
df1 <- df1 %>%
group_by(employeeid) %>%
arrange(fiscalyear, .by_group = TRUE) %>%
mutate(pct_change = ((Salary/lag(Salary) - 1) * 100))
I then modified the above code from "df1" to "dataset" but was unable to get it to work. Could someone please help me?
Solved! Go to Solution.
Hi @Anonymous ,
I use the code below and new column is created.
library(stats) library(base) library(dplyr) df1 <- dataset %>% group_by(employeeid) %>% arrange(fiscalyear, .by_group = TRUE) %>% mutate(pct_change = ((Salary/lag(Salary) - 1) * 100))
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I'm just getting a blank table.
Hi @Anonymous ,
I use the code below and new column is created.
library(stats) library(base) library(dplyr) df1 <- dataset %>% group_by(employeeid) %>% arrange(fiscalyear, .by_group = TRUE) %>% mutate(pct_change = ((Salary/lag(Salary) - 1) * 100))
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
How and where did you save that code block within Power BI?
Thanks, Icey! I didn't realize you had to import R base and stats.
Hi @Anonymous ,
Can you give me your error information? So that I can help you better.
Best Regards,
Icey
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
76 | |
60 | |
36 | |
33 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |