Today I use the formula =DIAS(HOJE();H2)
to calculate the delay time in Excel:
But this source I extract from Access, does anyone know the syntax to mount this formula in Access?
Try to use the now()
function, the formula would look like this:
Tempo_Pendencia: Round(Now() - [Data_inicio_pendencia], 0)
The formula Round()
with zero eliminates decimals.