Originally posted by Unknown
This will only work IF your registrations add a timeline note after a person registers.
On your report, add a 'Lava' field. Rename the field to whatever you want the column header to say.
Add the following lava into your field. NOTE - You'll need to make sure that you've also included the 'Id' in your report. It can be set to 'Not Show in Grid' but you'll need that Id for the lava.
{% assign pid = Id %}
{% note where:'EntityId == {{ pid }} && NoteTypeId == 5' sort:'CreatedDateTime DESC' limit:'1' %}
{{ note.CreatedDateTime | Date: 'MM/dd/yyyy' }}
{% endnote %}