Basically I need to populate a column with created new words in this format (??P??P) or (??K??K), "?" is wildcard. If possible I would want the 2nd and 5th letters to be vowels. I also want to be able to change the expression (??P??P) to (??X??X), X can be any letter. I tried finding commands for this in "customise menu" and in the "insert menu" options. I tried to find expressions for this in "Regex command" documentation in Libreoffice documentation. I am not a technical person, so I do not have the ability to create scripts for this. Any help is appreciated.
How to generate list of words in Libreoffice calc
153 Views Asked by banuyayi At
1
There are 1 best solutions below
Related Questions in LIBREOFFICE
- How to switch encoding of LibreOffice strings in Java UNO API?
- Is there a way to automatically export OpenOffice/LibreOffice drawings to bitmaps, with options?
- LibreOffice. Getting OutOfMemoryException while execute Conversion to PDF not instantly, but after long time of work
- Calculate the average of a filtered list/column with a condition (libre office calc)
- LibreOffice converts files from RTF to PDF to plain RTF text
- How to turn off LibreOffice API SDK Reference Browser?
- I compiled LibreOffice on Windows using Cygwin, but after running 'C:/cygwin64/opt/lo/bin/make', I encountered numerous errors
- How do I this shell (.zsh) script to put files into nested folders?
- win32gui SendMessage not working correctly in libreoffice
- Is there a way to program macros to finely tune animations in LibreOffice Impress?
- problem invoking msgbox after closing one document in python. object has no attribute 'getCurrentController'
- Add Image to Libre Office Writer with VB.Net
- How do I get content of a text cursor in Libreoffice Writer?
- How to convert excel to PDF using nodeJS? Getting issues using libreoffice-convert
- Libreoffice classes not available in java code
Related Questions in LIBREOFFICE-CALC
- Merge same data in different lines (libreoffice)
- I am trying to sum a cell from many sheets dependent on a condition in each sheet. using libreoffice calc
- How to sum/process portions of a pivot table results?
- Calculate the average of a filtered list/column with a condition (libre office calc)
- How can I use VLOOKUP in LibreOffice Calc?
- How to query image information in a Libreoffice macro?
- Excel/Calc gives wrong comparison result (after sending file)
- How to select entire row in a Libreoffice Basic macro?
- LibreOffice Calc SECOND function returning wrong value - why?
- Configure libreoffice calc such that default search is by columns not rows
- How to Print LibreOffice Calc Document on A2 or Larger Paper When Default Settings Limit to A4?
- From one column generate a table with two columns
- LibreOffice Calc, make row height adjust automatically to show all cell content
- Formulas with data ranges and hidden cells
- Modifying a named range with openpyxl causing LibreOffice pivot table to stop using range
Related Questions in WORD-PROCESSOR
- MS Word managing header and footer in a document with both landscape and portrait layouts
- How to apply style changes (such as bold, Italic, color, adding bullets, etc) inside a JTable in Java?
- How to generate list of words in Libreoffice calc
- How to implement a zooming function with header and footer support in PagesTextEdit forked by dimkanovikov on github?
- How do I convert a Google Doc for alternate cloud storage, with revision history intact, to a openable document in Dropbox
- How to set the style of inputted text to that which immediately follows the cursor position in a JTextPane
- Count the occurrences of every word in C
- Is there a Word processing software built for inline annotations, references and line count?
- How to write an algorithm that receives characters one by one and displays them in the form of book with pages?
- How to make a word processor in Arduino (C/C++) where the text is coming character by character?
- How does computer interpret/understand or recognize a particular letter even if its written in different typefaces?
- how to restore a splitted word by removing the hyphen "-" because of hyphenation in a paragraph using python
- Determine if a file contains a string in C
- How to get copy and paste-able tables accross browsers for export to word-processors?
- is there any way to display contents of .docx files as selected by a visitor on my django webapp?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Such "words" are not difficult to generate. To get a random integer use the RANDBETWEEN() function
Now, using the CODE() function, find out the code for the letter "A", add a random number from 0 to 25 to this code, and convert it back to a letter using the CHAR() function:
=CHAR(CODE("A")+RANDBETWEEN(0;25))This will give you one random letter.
To get a random vowel letter (or any letter from a predefined list) list all the desired letters in one line and pull out one random letter using the MID() function
=MID("AEIOU";RANDBETWEEN(1;5);1)Letters that should remain unchanged in the template, specify explicitly - just put the letter in quotation marks: "P", "K", "X"
Now you have all the necessary parts for the formula, connect them using the CONCAT() function or just using the ampersand sign &