Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Formula - If a Date is in the cell - bring backed Shippped

Karl_Spratt
8 - Asteroid

Hi Community,

Need some help please trying to add a  formula column to a workflow to  say if the re is a date  tell me its shipped, otherwise say not shipped ( for cells with no date) 

 

Formula I was thinking was 

Replace([PGI Date], >"", 'shipped', 'not shipped'))

Can someone please advise the correct logic.

TIA

Karl. 

2 REPLIES 2
MarqueeCrew
20 - Arcturus
20 - Arcturus

@Karl_Spratt ,

 

Please try:

 

IIF(isEmpty([PGI Date]), "not shipped", "Shipped")

 

That should do the trick.

 

Cheers,

 

Mark

Alteryx ACE & Top Community Contributor

Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
Karl_Spratt
8 - Asteroid

Thanks Mark that worked a treat.. Cheers Karl 

Labels