Hi @dylandavis09 , If I understood your requirement that you want to display an asterisk (*) in front of Title Course, then try below on Text property if the prerequisites of Yes/No type.
If(ThisItem.Prerequisites = true, "* " & ThisItem.'Title Course', ThisItem.'Title Course')
if the prerequisites of Single line text , then use below:
If(ThisItem.Prerequisites = "Yes", "* " & ThisItem.'Title Course', ThisItem.'Title Course')
-----------------------------------------------------------------------------------------------------------------------------
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