Yo, @joel914823 , perhaps place an if() statement in there. 🙂
if(
equals(outputs('Get_item')?['body/Complete_x0020_Date'], null),
' ',
FormatDateTime(
outputs('Get_item')?['body/Complete_x0020_Date'],
'M/dd/yyyy h:mm tt'
)
)
Or, if it is potentially having 'blank' values, then you can get a bit more creative with:
if(
equals(outputs('Get_item')?['body/Complete_x0020_Date'], null),
' ',
if(
or(
equals(outputs('Get_item')?['body/Complete_x0020_Date'], ''),
empty(outputs('Get_item')?['body/Complete_x0020_Date'])
),
' ',
FormatDateTime(
outputs('Get_item')?['body/Complete_x0020_Date'],
'M/dd/yyyy h:mm tt'
)
)
)
Also, not for nothing, mate ... but I don't usually say this ... but it looks like you've taken my advice in the other thread ... if you can mark my (or whomever's!) answer there as the answer then it helps others that turn up to find answers quickly to the same issue. 👍