Hello @enswitzer
For the "Months Pushed Out" expression, you should use the following expression:
int(first(split(string(item()?['MonthsPushedOut']),'.')))
Which converts the number to a string, get the number before the "." and converts it to integer.
And for the date at the top (I suppose it is written in the email) you should use:
formatDateTime(your_date,'yyyy-MM-dd')
Hope it helps!
Ferran