User Profile
cwb3106
Copper Contributor
Joined Oct 29, 2023
User Widgets
Recent Discussions
Re: Date-Time Stamp for each journal entry to work activities
If you don’t want to use macros, you can use the insert feature to add the date/time as text. In the Date & Time pop-up there is an “Update automatically” check box. If checked, you’ll get a field which as you’ve discovered, will update to the current time. If unchecked, you’ll get ordinary text which will not update.2.1KViews2likes1CommentRe: C# Calculate the next end date of a subscription
Something like the below should work. The AddMonths method handles roll-over to the next month (and year if necessary). DateOnly newExpirationDate = new DateOnly(cancelDate.Year, cancelDate.Month, startDate.Day); if (cancelDate.Day > startDate.Day) { newExpirationDate = newExpirationDate.AddMonths(1); }549Views0likes0Comments
Recent Blog Articles
No content to show