Updating a date on a PPT slide when the slide is amended - date

I'd like to be able to automatically update a date (like a "last modified" date) on individual M365 PowerPoint slides whenever an object on the slide is changed. Note that it can't be the last saved date as (a) autosave is on, and (b) this would affect the whole slide deck (i think).
So I want each slide in the deck to have its own "last modified" date.
Is this possible? TIA

Related

Crystal reports grouping by date, does not shows detail of records by the grouped date

I'm having a problem with the records showed in the detail in which should be all the records grouped by the date field.
I want to group all the invoices done in one day, without doing it by day of the day, ex. Monday, Tuesday, etc.. That's not what I want, I want to show the Document Date (group) and the invoices sold in that date under it.
Please see the graphic attached, the detail record does not belong to the group.
I'm using Crystal Reports 14.1.5.1501
Thank you very much for your help!
enter image description here
enter image description here
Added two more screens, to verify it's the same field.
enter image description here
enter image description here
I finally found the problem, when creating the group, I did not notice that for some reason under "The section will be printed for each" drop down list, it brings "For each week" by default instead of “For each day”. I created another report and the same thing happened, that's why it was driving me crazy. Like I said "It has to be something simple". I had to search for a youtube video to realize that.

How to write a view to identify content with a date field without repeats

The website has a content type defined called an event, which is used in calendars and other displays. It has the following fields
Event
Label Machine name Field type Widget Operations
Title title Node module element
Group og_group_ref Entity Reference OG reference edit delete
Date field_eventdate Date Pop-up calendar edit delete
Description body Long text and summary Text area with a summary edit delete
Booking Details field_eventbooking Long text Text area (multiple rows) edit delete
Contact Details field_eventcontact Long text Text area (multiple rows) edit delete
Downloads upload File Multiupload edit delete
Retire from Front Page field_retire_from_front_page Date Pop-up calendar edit delete
Key Words field_key_words Term reference Check boxes/radio buttons edit delete
Meta tags metatags Meta tag module form elements.
Location locations Location module form elements
The content type has been use for over 10 years and there are over 6000 records of this type.
The majority of the records are one off events with no repeats, but some are regular events with repeats set up for once a month meetings etc.
I would like to write a view to identify those records which do not have repeating dates, and for which the date is in the past so these can be removed from the system, but I can't see a way of identifying which events have repeating dates and which do not.
Once the one off events can be presented in a view, View Bulk Operations can be used to remove them.
The repeating events are more problematic because some of them may still be in use, this would need to be determined as a second step or done manually.
The date module in use is Date 7.x-2.10.
It turns out to be relatively easy just filter on
Content: Date:rrule (empty) to pick up records with no repeats
Thanks to Tony Maynard-Smith for the answer.

AZURE DevOps the date a story moves into a column (swimlane)

I would like to display the date a story moves into a different column / swim lane on the story card so everyone looking at the board can see the length of time a story is in a column / swim lane.
There is currently no field in the cards setting that can show the changed date for the column/swimlane.
The Changed Date field here is not only for column / swimlane changes, but also for other item changes.
In addition, the date displayed in the card can only be accurate to a certain day, not the specific time.
So, if you want to track the specific date of column/swimlane changes, you need to click into the story card and view it in History.

Is there any way to set the action to focus on the most recent updated date on tableau?

Is there any way to set the action to focus on the most recent updated date? Every Time when tableau extract refreshes, the new date value will be added, and the default action will not update and always focus on the value that along with the published format.
According to the image the default action was set to 2012, therefore, the image below was reflecting the value of 2012. However, when the extract is updated, the bar graph will have one extra bar that represents 2013. How to let the cube image reflex the value from 2013?

Excel - Insert "day" on a cell and format it to date with current month and year

I am working on a home accounting template (and could not find any good one :-/), so I am creating one for each month. Both in my expenses and my incomes, I would like to have a date column where I just have to insert the "day" (e.g.: 22) and it automatically fills the rest with the current month and year (or I could set them in another cell).
For example: 22 + ENTER would return: 22/12/2014
If I do this, I automatically get a default date: 22/01/1900
I do not know if it is possible to change this defaul date depending on the current one or any other value.
I have tried with a different strategy: if the amount column is not empty, fill in with today's date: =IF(A3="";"";TODAY())
The problem is that I do not always register today's expenses, so I need to change it manually. I was just wondering if this is possible and there is a better way (maybe a macro?).
You need Excel to modify the cell contents after you press ENTER. The only option seems to be a Macro using the Worksheet_Change event.
Please check out this other question. I think that will help.
This can be achieved with simple formatting and use of controls that are available in Excel. VBA will give you drastically more flexibility, however the request above can be accomplished without learning VBA.
I have included a sample file here.
Steps to recreate:
Create a range of months. I created a range including the current month through 12/2014
Insert a combo box from the developer tab. Right click and select Format Control. On the Control tab, input the range you just created and then select a "linked cell". This will insert an integer to indicate which item you picked in the list, starting at 1.
Use the attached formula to add the DAY that you enter in the first column and VLOOKUP the month and year from the value chosen in the combo box.
Enhancements: I used conditional formatting to change the text color of the days you enter to WHITE. This way you won't see them. I also included some checking in the VLOOKUP formula: the day you enter must be a number and must be non-blank for a date to populate.