Nov 17 2021 04:21 AM
Hi,
I want a column that shows the number of days between a date thats in another field and todays date. I tried with this =floor((Number([Datefield])-Number(@now))/(1000*60*60*24)), but it failed. Any ideas?
Nov 17 2021 05:07 AM
@Tonje Waasjø you can use the DATEDIF function =DATEDIF(TODAY(),Expiry,"D")
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
Nov 17 2021 05:51 AM
Jul 02 2023 06:59 AM
@Tonje Waasjø
go for this:
=ReviewDate-today()
it will give you overdue days in negative days.
=(ReviewDate-today())*-1
it will give you the overdue days in days.