SSRS Expression

I am working on a SSRS report and I have an Order Date expression that I
would like to modify.

this expression returns the date and the time of the PO

=Fields!POHeader_OrderDate.Value

I would like to remove the time stamp from the expression

How do I do that?

Gary Wojtowicz

AJR Industries, Inc.

You can use something like this.

=iif(isnothing(Fields!OrderDate.Value),nothing,formatdatetime(Fields!OrderDate.Value,DateFormat.ShortDate))