Alessio_Monino wrote:
hi @Daniel_Rushton,
I think the easiest way to complete what you are describing is to create a column with a formula field that looks for the first letter in the name and accordingly puts either Group 1 or Group 2. Then in the views you can use filters to only show records that belong to that particular group.
Hope this helps!
Alessio
Website: alessiomonino.com
Email: alessio.monino@gmail.com
I got it! In case you want to try this or anyone else wants to, here is the formula I used:
IF(FIND(“A”,{Student Name - Last})=1,“1”,
IF(FIND(“a”,{Student Name - Last})=1,“1”,
IF(FIND(“B”,{Student Name - Last})=1,“1”,
IF(FIND(“b”,{Student Name - Last})=1,“1”,
IF(FIND(“C”,{Student Name - Last})=1,“1”,
IF(FIND(“c”,{Student Name - Last})=1,“1”,
IF(FIND(“D”,{Student Name - Last})=1,“1”,
IF(FIND(“d”,{Student Name - Last})=1,“1”,
IF(FIND(“E”,{Student Name - Last})=1,“1”,
IF(FIND(“e”,{Student Name - Last})=1,“1”,
IF(FIND(“F”,{Student Name - Last})=1,“1”,
IF(FIND(“f”,{Student Name - Last})=1,“1”,
IF(FIND(“G”,{Student Name - Last})=1,“1”,
IF(FIND(“g”,{Student Name - Last})=1,“1”,
IF(FIND(“H”,{Student Name - Last})=1,“1”,
IF(FIND(“h”,{Student Name - Last})=1,“1”,
IF(FIND(“I”,{Student Name - Last})=1,“1”,
IF(FIND(“i”,{Student Name - Last})=1,“1”,
IF(FIND(“J”,{Student Name - Last})=1,“1”,
IF(FIND(“j”,{Student Name - Last})=1,“1”,
IF(FIND(“K”,{Student Name - Last})=1,“1”,
IF(FIND(“k”,{Student Name - Last})=1,“1”,
IF(FIND(“L”,{Student Name - Last})=1,“1”,
IF(FIND(“l”,{Student Name - Last})=1,“1”)))))))))))))))))))))))
Thanks Allessio!!!