IF (dateadd('day',[Measure Met],dateadd('week',Sum([Solve for X]),today()))) >= TODAY()THEN dateadd('day',[Measure Met],dateadd('week',Sum([Solve for X]),today())) ELSE NULL end
Hi, @Jeff Haney
What happens if you use the STR function to convert the date result when it is True into text?
It will look like the image below. Give it a try.
(Since characters cannot be mixed in the date field, it may be a good idea to stick to characters.)
<sample>
<calc sample>
IF (dateadd('day',[Measure Met],dateadd('week',Sum([Solve for X]),today()))) >= TODAY()THEN STR(dateadd('day',[Measure Met],dateadd('week',Sum([Solve for X]),today()))) ELSE 'Met' end
*If you get the best results from this exchange, I would appreciate it if you could choose the best answer or upvote.