From e3b57495b8b661570b20b1947c0b57ff8a587404 Mon Sep 17 00:00:00 2001 From: marcelcosta Date: Thu, 23 Oct 2025 12:13:47 +0200 Subject: [PATCH] =?UTF-8?q?Correcci=C3=B3n=20exportar=20xlsx.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Nitrogen-CIT/app.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Nitrogen-CIT/app.R b/Nitrogen-CIT/app.R index 23fef3e..e62f17c 100644 --- a/Nitrogen-CIT/app.R +++ b/Nitrogen-CIT/app.R @@ -106,7 +106,8 @@ server <- function(input, output) { paste("Nitrogen", ".xlsx", sep="") }, content = function(file){ - write.xlsx(dades$taula, file) + + writexl::write_xlsx(dades$taula, file) } )