=LOWER(TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(B2,"("," "),")"," "),"-"," "),":"," "),";"," "),"!"," "),","," "),"?"," "),"["," "),"]"," "),"."," ")))
For reading and editing:
=
StripAccent(
LOWER(
TRIM(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
A1,
"("," "),
")"," "),
"-"," "),
":"," "),
";"," "),
"!"," "),
","," "),
"?"," "),
"["," "),
"/"," "),
"]"," "),
"."," "))))
Use on Alma Title and Publication Place
Use this to replace diacritics with non-diacritic character
View Code > Insert > Module > copy and paste:
Alt+Q to close VBA
To use, enter formula =StripAccent(A2)
=COUNTA(UNIQUE(A2:A10))
first make a helper column to identify which ones have the word you want to remove
Then filter and remove the number of characters you want
Then filter and remove the number of characters you want
To keep spaces while removing other special characters using Power Query in Excel, you can modify the Text.Select
function to include spaces. Here's how you can do it:
Text.Select([ColumnName], {"A".."Z", "a".."z", "0".."9", " "})
This formula will ensure that spaces are retained while removing other special characters
To create a column of clickable links to E-version:
=HYPERLINK(IF([@[Sheet1.MMS Id]]="","",CONCAT("https://search.library.uvic.ca/permalink/01VIC_INST/12198k2/alma",[@[Sheet1.MMS Id]])))