Forum Discussion
AMJ_Devon
May 02, 2019Brass Contributor
How do I create a Sharepoint glossary without using an app?
Hello everyone, Me again! I'm wondering if you can give me some advice about to create a glossary in SharePoint. The topic my SharePoint is about is quite complicated and I want an easily sea...
Natasha2020
Jan 14, 2021Copper Contributor
Hi AMJ_Devon ,
A customized list can be a simple solution to host your glossary.
What I would do a little bit more is to:
- Create a list called "Alphabet".
- Configure a customized column called "Initials"
- Then Create 26 items starting from A to Z;
- Create another list called "Glossary".
- Configure the list with all the customized columns you want. For example, definition, submitted by...
- Then add another column called "Initials"(and make this field mandatory too)
- Then add all the glossary you have as items (Remember to fill out the “Initials” column for your glossary).
- Create a SharePoint page and add these two lists there as two web parts (side by side, or up and down).
- Use "Dynamic Filter" to connect these two web parts.
In this way, you should be able to avoid being redirected to a new page when clicking on an initial.
TRAllen
Mar 11, 2021Copper Contributor
Natasha2020
Another tip to add to the last post... Instead of the "Initials" column, I use a calculated column to automatically enter the first character of the acronym. Use this calculated column to connect the A, B, C ... filter to the list. I used the following:
=IF(ISNUMBER(VALUE(LEFT(Acronym,1))),"123",LEFT(Acronym,1))
If the first character is a number it returns "123" otherwise it returns the first letter (I included "123" in my filter list of the alphabet). In my example "Acronym" is the name of the column.