similar to: DocX support in OpenOffice

Displaying 20 results from an estimated 5000 matches similar to: "DocX support in OpenOffice"

2009 Jun 09
3
OT: Viewer for .docx M$ WORD files?
Is there a Viewer for .docx M$ WORD files? If so, where can I get it? This file type cannot be opened with OpenOffice.org 2.3. TIA!
2009 Nov 25
8
Docx format ?
Hi, Is there any way I can read a .docx file on my CentOS desktop ? Cheers, Niki
2012 May 07
2
FileFormatConverters: no equations in docx documents?
Hello. I need to view some docx files that embed equations. I installed wordviewer, then FileformatConverters in wine 1.5.3. Both install ok, and I can view docx files, except that the equations don't appear at all. Does anybody have a solution? Thanks! -- F. Delente
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
? Fri, 29 Dec 2023 20:17:41 +0000 Andy <phaedrusv at gmail.com> ?????: > doc_in <- read_docx(files) > > Results in this error:Error in filetype %in% c("docx") && > grepl("^([fh]ttp)", file) :'length = 9' in coercion to 'logical(1)' help(read_docx) says that the function only imports one docx file. In order to read multiple files,
2023 Jun 01
1
ayuda sobre grafico de barras simple
El 31-05-23 a las 17:56, Javier Marcuzzi escribió: > Estimados > > José envio un archivo, pero no es privativo.  Hay varios programas > para abrir un documento word, pero, dicho de otra forma, es docx, > especificado en: > > Office Open XML - Wikipedia, la enciclopedia libre > <https://es.wikipedia.org/wiki/Office_Open_XML> > es.wikipedia.org
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
help(read_docx) says that the function only imports one docx file. In > order to read multiple files, use a for loop or the lapply function. > I told you people will suggest better ways to loop!! > > docx_summary(read_docx("Now they want us to charge our electric cars > from litter bins.docx")) should work. > Ivan thanks for spotting my fail! Since the OP is new to
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
Hi Roy (& others) Many thanks for the advice - well taken. Thanks also to the others who have responded so quickly - I thought I might have to wait days!! :-) I'm on a Linux (Mint) machine. Below, I document three attempts, two using officer and the last now using textreadr My attempts so far using 'officer': ################## (1) First Attempt: # Load libraries
2023 Dec 30
1
Help request: Parsing docx files for key words and appending to a spreadsheet
Thanks Ivan and Calum I continue to appreciate your support. Calum, I entered the code snippet you provided, and it returns 'file missing'. Looking at this, while the object 'full_filename' exists, what is happening is that the path from getwd() is being appended to the title of the article, but without the '/' between the end of the path name (here 'TEST' and
2023 Dec 30
2
Help request: Parsing docx files for key words and appending to a spreadsheet
Hi Eric Thanks for that. That seems to fix one problem (the lack of a separator), but introduces a new one when I complete the function Calum proposed:Error in docx_summary() : argument "x" is missing, with no default The whole code so far looks like this: # Load libraries library(tcltk) library(tidyverse) library(officer) filepath <- setwd(tk_choose.dir()) filename <-
2023 Dec 30
1
Help request: Parsing docx files for key words and appending to a spreadsheet
full_filename <- paste(filepath, filename,sep="/") On Sat, Dec 30, 2023 at 1:45?PM Andy <phaedrusv at gmail.com> wrote: > Thanks Ivan and Calum > > I continue to appreciate your support. > > Calum, I entered the code snippet you provided, and it returns 'file > missing'. Looking at this, while the object 'full_filename' exists, what > is
2023 Dec 30
3
Help request: Parsing docx files for key words and appending to a spreadsheet
An update: Running this block of code: # Load libraries library(tcltk) library(tidyverse) library(officer) filepath <- setwd(tk_choose.dir()) filename <- "Now they want us to charge our electric cars from litter bins.docx" #full_filename <- paste0(filepath, filename) full_filename <- paste(filepath, filename, sep="/") if (!file.exists(full_filename)) { ?
2012 Oct 19
3
saving to docx
hi all, how can i saving R output to docx or Jpeg format? [[alternative HTML version deleted]]
2023 Dec 29
2
Help request: Parsing docx files for key words and appending to a spreadsheet
Hi Andy: I don?t have an answer but I do have what I hope is some friendly advice. Generally the more information you can provide, the more likely you will get help that is useful. In your case you say that you tried several packages and they didn?t do what you wanted. Providing that code, as well as why they didn?t do what you wanted (be specific) would greatly facilitate things. Happy
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
checkout the 'officer' package Thanks Jim Holtman *Data Munger Guru* *What is the problem that you are trying to solve?Tell me what you want to do, not how you want to do it.* On Fri, Dec 29, 2023 at 10:14?AM Andy <phaedrusv at gmail.com> wrote: > Hello > > I am trying to work through a problem, but feel like I've gone down a > rabbit hole. I'd very much
2008 Jul 29
1
Flax support for docx
Anyone used Flax to search for docx? I'm testing on XP. Installed msxml6.msi and FilterPackx86.exe but Flax dosen't seem to register *.docx as a document type. Is there a way for me to add it in? Thanks, Frank
2023 Dec 29
2
Help request: Parsing docx files for key words and appending to a spreadsheet
Hello I am trying to work through a problem, but feel like I've gone down a rabbit hole. I'd very much appreciate any help. The task: I have several directories of multiple (some directories, up to 2,500+) *.docx files (newspaper articles downloaded from Lexis+) that I want to iterate through to append to a spreadsheet only those articles that satisfy a condition (i.e., a specific
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
It sounded like he looked at officeR but I would agree content <- officer::docx_summary("filename.docx") Would get the text content into an object called content. That object is a data.frame so you can then manipulate it. To be more specific, we might need an example of the DF You can loop this easily with a for statement although there are people who prefer a non-for approach to
2012 Apr 06
1
Wine MSoffice 2007 .docx.lnk file creation on Ubuntu 11.10
whenever I open or save a file on MSword 2007 using WIne 1.3.28 on Ubuntu 11.10, there's also a .docx.lnk file that gets created with the same name as my documents. How to fix this?
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
I would also look at https://pandoc.org perhaps which can export a number of formats... And for spreadsheets https://github.com/jqnatividad/qsv is my goto weapon. Can also read and write XLSX and others. A sample document or two would always be helpful... el On 29/12/2023 21:01, CALUM POLWART wrote: > It sounded like he looked at officeR but I would agree > > content <-
2023 May 31
2
ayuda sobre grafico de barras simple
Estimados José envio un archivo, pero no es privativo. Hay varios programas para abrir un documento word, pero, dicho de otra forma, es docx, especificado en: https://es.wikipedia.org/wiki/Office_Open_XML? Bajo esas especificaciones es posible crear reportes escritos con extensión docx, o pdf, la diferencia es que uno es creado por Microsoft y otro por Adobe. Yo se utilizar lo especificado y