How can I create a column that displays "x Weeks and x Days remaining" until a task's start date? I know about RYG Balls and what I can do with conditional formatting, but those just aren't sufficient for my needs.
In Excel/Sheets I use the MOD function to do this using the following formula:
=IF(([Start Date]-TODAY())>0,(INT(([Start Date]-TODAY())/7)&" weeks"&IF(MOD([Start Date]-TODAY(),7)=0,"",", "&MOD([Start Date]-TODAY(),7)&" days")),"")
but MOD does not seem to be supported in SmartSheet.
Any ideas?