I wanted to know if it is possible to create a custom column that will get me today's date everytime without the need of updating an item in the list?
my end goal is to to be able to calculate how much time left or exceeded between a destination date and today's date.
I thought about a placing a code like this hidden on the page and then somehow referring to the innerHTML of the date div when I create a calculated column.
today = new Date();
D = today.getDate(); M = today.getMonth() + 1; Y = today.getYear(); document.getElementById('date').innerHTML=D+"/"+M+"/"+Y; <div id="date" style="display:none"></div>
anyone has any thoughts about how this could be done?