How to replace null which is string in data3sixty

Need to replace Null ( blank) value in data3sixty... column data is in string format

Hi, and welcome!

This is a bit ambiguous without a reprex. See FAQ: What's a reproducible example (`reprex`) and how do I do one?.

However, assuming that you have a variable with cells equal to "" you can mutate

mydata %>% mutate(variable = ifelse(variable == "", NA, variable))
1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.