Forum Discussion
gigotomo
4 years agoFrequent Visitor
Next day calculation
Hello All,
I have this date column "Sent_on_1" in one of my tables. I need to create another column "Sent_on_1" which will have the next day as on "Sent_on_1" but the time on it should be 08:00 AM.
- Anonymous4 years ago
Hi gigotomo ,
You can create a new column
New Date = DATE( Year ( Table2[Sent On]) , Month(Table2[Sent On]) , Day(Table2[Sent On])) + 1 + TIME(8,0,0)Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
2 Replies
- AnonymousNot applicable
Hi gigotomo ,
You can create a new column
New Date = DATE( Year ( Table2[Sent On]) , Month(Table2[Sent On]) , Day(Table2[Sent On])) + 1 + TIME(8,0,0)Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button) - mh2587Super User
Use NEXTDAY function