I have field1="ab" "cd" "fg" and field2="ab" "cd" how i can get field3="fg" , distance between the "ab" "cd" ... a new line
1
There are 1 best solutions below
Related Questions in LOTUS-NOTES
- How to identify network drive path inside lotus notes forms
- Restore document (not response of any document)
- Javascript Object defined in Pages of Notes designer is unidentified on a subform
- Time out to Website using xpage in HCL Notes
- Appending Rich Text Style
- Saving agents in Domino Designer 14 adds ghost libraries
- Can Lotus Embedded views be used to filter fields? Just like where" in SQL
- Lotusscript Dir$ giving "illegal function call" with UNC path
- Domino Basic authentication fails when username contains special characters
- phantom reservation in Reservations database when trying to schedule a resouce/room
- Create a email attachment from a rich text field
- Encryption values not correct in HCL Notes emails
- Unable to create and configure repository database using template QuestlRepository.ntf in quest LNSP migrator console app
- Have more than 256GB in nsf application
- Error XPages com.ibm.xsp.page.FacesPageException. com.ibm.xsp not found
Related Questions in LOTUS-FORMULA
- Can Lotus Embedded views be used to filter fields? Just like where" in SQL
- Lotus Notes Attachment
- Is it possible to stop running Domino (Notes) Agent?
- Lotus Designer - @Trim undone when using sorting
- How to get matching pair of data from 2 multi-field columns?
- @!IsNull is still showing null rows in view
- HCL @Command([MailForward]) Command issue
- Is there a way to filter information from a view and display them in the same view?
- How do i write more complex code in Lotus Notes views
- Select@all for document UNID in notes not showing all documents
- Formula Language: Select all child documents
- How to create view in lotusscript having only peple with definied OU
- Lotus Notes error "entry not found in index or view's index not built"
- Lotus Notes : Fetch the information from share folder text file and store in Lotus notes database automatically
- contents of a Editable text field does not display in lotus notes view
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?
The difference of two text lists you can get with
@Replace:@Replacereplaces all entries in field1 which are also in field2 by an empty string "". The resulting list for your example would have the entries"" "" "fg".@Trimdeletes all empty strings from the list. The final result is then"fg".Make sure that form's field3 has the properties
"Allow multiple values"and "Multi-Value Options"New Line.