It depends on the transformation type. For most of them (like Text/XML) you can simply use this one:
{%
if (...) {
...
}
else {
...
}
|(identity)GlobalAdministrator%}
However, if you use ASCX transformations, you need to use IfCompare method:
<%# IfCompare(1, 2, "The values are different", "The values are equal") %>
Best regards,
Jan Hermann