I have fields in a display form. I want to recreate the ff:
If there is no data in the current item displayed, I want it to display like <No Data Entered>
The problem is that Hiring Partner is a person/group column type

This is the code i used for the request created in the display field(I know that the request created should have an input always, its just newly added this column that's why it has no value but you get my point)
If(
IsBlank(Parent.Default),
"<No Data Entered>",
Parent.Default
)
How can I implement this in my person/group column type in display form?
I tried this but it doesn't work
If(
IsBlank(<SOURCE>.HiringPartner),
"No Data Entered",
[<SOURCE>].HiringPartner
)
//SOURCE is just a placeholder for a sharepoint list