Jan 29 2023 06:16 AM - edited Jan 29 2023 06:17 AM
The last two digits of the student number indicate the year the student enrolled. In F4 create a formula that will put "20" followed by the last two digits of the Student ID, e.g. 2015. Copy the formula down for all the other students. What is the value of the check digit in S6?
Jan 29 2023 06:41 AM
=NUMBERVALUE("20"&RIGHT(A2,LEN(A2)-FIND("/",A2)))
You can try this formula. What is the expected result of the check digit in S6?
Jan 29 2023 06:59 AM
Jan 29 2023 02:08 PM
I have used a recent Excel 365 function
= 2000 + TEXTAFTER(studentID,"/")
It should return the entire column as a dynamic range.