Forum Discussion
Antonio3333
Feb 01, 2024Copper Contributor
Diference between 2 collums with Year-Weeknumber
Hi Team, How can calculate the diference between this 2 collums? Thank you
- Feb 01, 2024I would recommend going back to the original DATE instead of these text outputs. You can do: =QUOTIENT([delivery date]-[requested date],7)
or you could ROUND( ([delivery date]-[requested date]) / 7, 0)
m_tarler
Feb 01, 2024Bronze Contributor
I would recommend going back to the original DATE instead of these text outputs. You can do: =QUOTIENT([delivery date]-[requested date],7)
or you could ROUND( ([delivery date]-[requested date]) / 7, 0)
or you could ROUND( ([delivery date]-[requested date]) / 7, 0)
Antonio3333
Feb 07, 2024Copper Contributor
Thank you m_tarler