I’m trying to set the textbox alignment depending on its content.
I have
= Replace(Fields!1_Text.Value, " " , chr(13) & CHR(10))
in value expression.
Where should I put
iif(fields!Allignment.Value = "C", "Center", "Right")
to align as coded?
Try using an aggregate function, such as first(), around your fields:
(alignment is misspelled…)