Skip to main content
On a report I want to calculate number of dates between contacting client to today . What is the formula I can use ? Thanks !
14 件の回答
  1. 2021年4月27日 18:17
    TODAY() is a Date field and LAST_UPDATE is a Date-Time field. Try either using NOW() instead of TODAY(), or only getting the date portion of last update: TODAY() - DATEVALUE(LAST_UPDATE)
0/9000