Sign in to join the conversation:
Hello,
If someone could assist me please that knows how.
I am trying to get the total days calculated automatically between two dates.
i.e 1st Sept 2019 to 15th Jan 2020 - How fo I get the total days calculated.
Do let me know please.
Thank you
Hi Gordon,
Depending on what you need, there are several different ways to get the number of days between dates.
You can use the Duration feature if you have set up the Project Settings for the sheet and enabled Dependencies.
You can use on of the Functions below:
Try something like.
=NETDAYS([Start Date]@row; [End Date]@row)
=NETWORKDAY([Start Date]@row; [End Date]@row)
=NETWORKDAYS([Start Date]@row; [End Date]@row)
More info: https://help.smartsheet.com/functions
Hope that helps!
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
Thanks you that's is quite helpful.
Excellent!
Happy to help!
Hi Andree
What would one put around that function to show a zero when the dates haven't yet been selected for the function to calculate?
Thanks
Cheers
Richard
Hi Richard,
Try something like this.
=IF(OR(ISBLANK([Start Date]@row); ISBLANK([End Date]@row)); ""; NETDAYS([Start Date]@row; [End Date]@row))
The same version but with the below changes for your and others convenience.
=IF(OR(ISBLANK([Start Date]@row), ISBLANK([End Date]@row)), "", NETDAYS([Start Date]@row, [End Date]@row))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Andrée
Hello, I am having trouble making my Dynamic View work. I feel like I am following the instructions but I seem to be the only one able to see the "view". Trying to test this internally before I push out to the customer. I am using a filter that is built into the main worksheet. Anyone have time to review with me? Thank you…
I’m having service provide agreements for different clients, how to implement a e-sign workflow in smart sheet where a document is generated and sent for signature to the clients.
We have MANY sheets to transfer. This is as a result of our company domain changed (hii-tsd.com to hii.com). So we transferred ownership to 3 people (myself included) on the Portal Team, who manage the Smartsheet files. I had a co-worker on the portal ACCEPT the email that was sent to the shared mailbox, and then the…