Forum Discussion
KatrinaE
7 years agoQrew Cadet
I'm trying to get the difference between todays date and the expected start date of a project but if the project has been started already, I want the value to be NA. I have a text field and it's not letting me put the "-", if I do a numeric, it won't let me do the value NA
If(
not IsNull([Started]),"N/A",
ToText(([Start])-(Now())
)
)
If(
not IsNull([Started]),"N/A",
ToText(([Start])-(Now())
)
)
QuickBaseCoachD
7 years agoQrew Captain
Try this
If(
not IsNull([Started]),"N/A",
ToText(ToDays(Today() - [Start])))
If(
not IsNull([Started]),"N/A",
ToText(ToDays(Today() - [Start])))