Skip to content
Snippets Groups Projects
Commit dc2bc3eb authored by richard beer's avatar richard beer
Browse files

Datein werden jetzt als csv gespeichert und nicht als xlsx

parent e48ef70e
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ function_Tokenaufbereiter_alle_TN <- function() { ...@@ -133,7 +133,7 @@ function_Tokenaufbereiter_alle_TN <- function() {
#save the file #save the file
#setwd("H:/01_Limesurvey_TokenVergleich") #setwd("H:/01_Limesurvey_TokenVergleich")
write_xlsx(combined_token_with_download,paste0("./Umfrageteilnehmertabelle_",format(Sys.Date(), "%Y_%m_%d"),"_alle_TN.xlsx")) write.csv(combined_token_with_download,paste0("./Umfrageteilnehmertabelle_",format(Sys.Date(), "%Y_%m_%d"),"_alle_TN.csv"), row.names = F)
function_end() function_end()
...@@ -182,7 +182,7 @@ function_Tokenaufbereiter_Newsletter <- function() { ...@@ -182,7 +182,7 @@ function_Tokenaufbereiter_Newsletter <- function() {
#save the file #save the file
#setwd("H:/01_Limesurvey_TokenVergleich") #setwd("H:/01_Limesurvey_TokenVergleich")
write_xlsx(combined_token_with_download,paste0("./Umfrageteilnehmertabelle_",format(Sys.Date(), "%Y_%m_%d"),"_Newsletter.xlsx")) write.csv(combined_token_with_download,paste0("./Umfrageteilnehmertabelle_",format(Sys.Date(), "%Y_%m_%d"),"_Newsletter.csv"), row.names = F)
function_end() function_end()
...@@ -244,7 +244,7 @@ function_Tokenaufbereiter_MIT_HHID_als_firstname <- function() { ...@@ -244,7 +244,7 @@ function_Tokenaufbereiter_MIT_HHID_als_firstname <- function() {
#save the file #save the file
#setwd("H:/01_Limesurvey_TokenVergleich") #setwd("H:/01_Limesurvey_TokenVergleich")
write_xlsx(combined_token_with_download,paste0("./Umfrageteilnehmertabelle_",format(Sys.Date(), "%Y_%m_%d"),"_mit_HHID_as_firstname.xlsx")) write.csv(combined_token_with_download,paste0("./Umfrageteilnehmertabelle_",format(Sys.Date(), "%Y_%m_%d"),"_mit_HHID_as_firstname.csv"), row.names = F)
function_end() function_end()
...@@ -292,7 +292,7 @@ function_Tokenaufbereiter_OHNE_HHID <- function() { ...@@ -292,7 +292,7 @@ function_Tokenaufbereiter_OHNE_HHID <- function() {
#save the file #save the file
setwd("H:/01_Limesurvey_TokenVergleich") setwd("H:/01_Limesurvey_TokenVergleich")
write_xlsx(combined_token_with_download,paste0("./Umfrageteilnehmertabelle_",format(Sys.Date(), "%Y_%m_%d"),"_ohne_HHID.xlsx")) write.csv(combined_token_with_download,paste0("./Umfrageteilnehmertabelle_",format(Sys.Date(), "%Y_%m_%d"),"_ohne_HHID.csv"), row.names = F)
function_end() function_end()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment