Can someone please help me? I am running a crystal XI report showing what the inventory turnover is, and the timeline. I have a column with "Last Sold Date" and another with "last receipt date". I built a formula to show the last active date (shown below).
If{CI_Item.LastReceiptDate}<{CI_Item.LastSoldDate} then
{CI_Item.LastSoldDate}else
{CI_Item.LastReceiptDate}
The formula works, but nothing is returned when there is an empty sold date or an empty last receipt date. How do I write the formula so that If the "last sold date" is empty it returns the "last receipt date" and vice versa?
Example of my data:
Item LastSoldDate LastReceiptDate LastActiveDate
xxx Apr-11 Jul-10 Apr-11
xxx Jul-11
I need the formula to return the Last receipt date in the ex. above
any suggestions would be greatly appreciated!
If{CI_Item.LastReceiptDate}<{CI_Item.LastSoldDate} then
{CI_Item.LastSoldDate}else
{CI_Item.LastReceiptDate}
The formula works, but nothing is returned when there is an empty sold date or an empty last receipt date. How do I write the formula so that If the "last sold date" is empty it returns the "last receipt date" and vice versa?
Example of my data:
Item LastSoldDate LastReceiptDate LastActiveDate
xxx Apr-11 Jul-10 Apr-11
xxx Jul-11
I need the formula to return the Last receipt date in the ex. above
any suggestions would be greatly appreciated!