My current formula is
=IF([To whom will the sample go?]@row = "Customer/Shipped out", "Shipping Date: " + [Date to be Shipped]@row + CHAR(10) + [Ship Method]@row + CHAR(10) + CHAR(10) + [TR Full Contact Info]@row , "")
I need this to be able to look at [TR Full Contact Info]@row and if blank, pull the information from [IN Full Contact Info]@ row
AI recommended :
Use IF(ISBLANK([TR Full Contact Info]@row ), [IN Full Contact Info]@row , [TR Full Contact Info]@row ) in your formula to select the correct contact info.
I tried subbing this in the one above for the [TR Full Contact Info]@row in the first formula but it didn't work:
=IF([To whom will the sample go?]@row = "Customer/Shipped out", "Shipping Date: " + [Date to be Shipped]@row + CHAR(10) + [Ship Method]@row + CHAR(10) + CHAR(10) + IF(ISBLANK([TR Full Contact Info]@row), [IN Full Contact Info]@row, [TR Full Contact Info]@row ) , "")
Any help appreciated!
Thanks
Tammy