Hi @dylandavis09 , As i remember for your other queries where I tried helping you. You have being using Choice column type for other SP list.
If 'Full Name' is Person type column and Graduation is of Choice, then below code will help.
If(Lookup('DHS Students Users', 'Full Name'.DisplayName = User().FullName).Graduation.Value = "Yes", true, false)
If 'Full Name' is text type column and Graduation is of Choice, then below code will help.
If(Lookup('DHS Students Users', 'Full Name' = User().FullName).Graduation.Value = "Yes", true, false)
-----------------------------------------------------------------------------------------------------------------------------
I hope this helps.
Please click Accept as solution ✅ if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs up.👍
Thanks,
ANB