I have a gallery pulling from a SP list. I'd like for the label "An IT Ticket has been submitted' to only show if the value of column "ITTicketNumber" is not blank. If it is blank, do not show. any help is appreciated.

I have a gallery pulling from a SP list. I'd like for the label "An IT Ticket has been submitted' to only show if the value of column "ITTicketNumber" is not blank. If it is blank, do not show. any help is appreciated.
Hi @joel914823
In the Label Text you could try
if(
!isblank(thisitem."ITTicketNumber"),
"An IT Ticket has been submitted",
""
)