thread767-1352528
As in the post previously referenced, I noticed an extra space before the day when formatting using the following:
(ToText(Today + {WorkOrders.shelf_life},('M/d/yy')))
This gives me a result of "12/ 6/13" when I am expecting "12/6/13"
Has anyone found a resolution to this? I too think it's a bug, so I have this ugly workaround:
ToText(Month(Today + {WorkOrders.shelf_life}),0,'') & '/' & ToText(Day(Today + {WorkOrders.shelf_life}),0,'') & '/' & Right(ToText(Year(Today + {WorkOrders.shelf_life}),0,''),2)
Better ideas?
As in the post previously referenced, I noticed an extra space before the day when formatting using the following:
(ToText(Today + {WorkOrders.shelf_life},('M/d/yy')))
This gives me a result of "12/ 6/13" when I am expecting "12/6/13"
Has anyone found a resolution to this? I too think it's a bug, so I have this ugly workaround:
ToText(Month(Today + {WorkOrders.shelf_life}),0,'') & '/' & ToText(Day(Today + {WorkOrders.shelf_life}),0,'') & '/' & Right(ToText(Year(Today + {WorkOrders.shelf_life}),0,''),2)
Better ideas?