<code class="vb keyword">I have a spreadsheet displaying a list of "Topics to address" that people from different departments can add notes and updates to. I have a "last modified by" column and "date modified" column that i would like to merge and display the name, date, and time of the last modification to a specific cell. The two mods below are what i have now but they are updating every cell when only 1 is modified. How do i get the info I'm looking for to only populate when a specific cell is modified?
i.e Rick James 2/1/18 2:45 modified cell I3, Kenny Powers 1/28/18 5:30 modified cell I4 etc.
Appreciate any and all assistance!
Code Module 1:
Function</code> <code class="vb plain">LastAuthor()</code>
<code class="vb plain">LastAuthor = ActiveWorkbook.BuiltinDocumentProperties(</code><code class="vb string">"Last Author"</code><code class="vb plain">)</code>
<code class="vb keyword">End</code> <code class="vb keyword">Function</code>
Code Module 2:
Function LastModified() as Date
LastModified = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time")
End Function
Cheers!
i.e Rick James 2/1/18 2:45 modified cell I3, Kenny Powers 1/28/18 5:30 modified cell I4 etc.
Appreciate any and all assistance!
Code Module 1:
Function</code> <code class="vb plain">LastAuthor()</code>
<code class="vb plain">LastAuthor = ActiveWorkbook.BuiltinDocumentProperties(</code><code class="vb string">"Last Author"</code><code class="vb plain">)</code>
<code class="vb keyword">End</code> <code class="vb keyword">Function</code>
Code Module 2:
Function LastModified() as Date
LastModified = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time")
End Function
Cheers!