Jump to content
Salesforce and other SMB Solutions are coming soon. ×

Notes text field - multiple postings with time stamp


GabrielV

Recommended Posts

I am trying to setup a notes section (text field) which will be used to record actions at different times/dates.

 

How can I set that field to stamp the time/date and separate the different entries chronologically.

 

smiley-wink

Link to comment
Share on other sites

Create a script:

set field(MyNotesField; ¶ & Get(CurrentTimeStamp) & MyNotesField)
Go to Field(MyNotesField)

(assuming you want the most recent note at the top).

 

If you want it last, change the first line to

set field(MyNotesField; MyNotesField & ¶ & Get(CurrentTimeStamp))

Either attach the script to the field as a button action, or attach it to a separate button. Click the field at the end of the timestamp and type in your new note.

 

--Doug

 

Edit: add missing ")"

Link to comment
Share on other sites

Upon thinking it over, a more elegant way to do this is to have a CurrentNote field into which you type your note, and then set your MyNotesField to "Get(CurrentTimeStamp) & CurrentNote & ¶ & MyNotesField"

 

--Doug

Link to comment
Share on other sites

This thread is quite old. Please start a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

Terms of Use