Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
70 | |
37 | |
29 | |
26 |
User | Count |
---|---|
91 | |
49 | |
45 | |
38 | |
36 |