=IIf(IsNull([Seniority]),'X',[Seniority])
Change it to read as above.
the iif statement works like this:
IIf([condition], if condition is true do this, otherwise do this)
In your case if there was data it was putting in a '-' which is what you told it to do.