Is there a way to add the date using Today() at the beginning of a submitted form field's text?
The psuedocode for the Text property would look something like this:
Today().hidden & USER INPUT
I'm using sharepoint to keep track of tickets. And I have versioning turned on to track new inputs. But I would like to have the date that an item is updated into the text field, so that techs can quickly view each time the ticket has been updated, on each specific date. Without having to view anything other than the field itself.
My end goal is to create something like this:
"Solution Field:"
Anyone have an idea?
Solved! Go to Solution.
Hi @AndrewValenzuel ,
Use below formula in the Update property of this field data card to achieve this:
If(IsBlank(ThisItem.Solution),Concatenate(Text(Today()),DataCardValue9.Text),Concatenate(Text(Today()),ThisItem.Solution))
Regards,
Mona
Hi @AndrewValenzuel ,
Use below formula in the Update property of this field data card to achieve this:
If(IsBlank(ThisItem.Solution),Concatenate(Text(Today()),DataCardValue9.Text),Concatenate(Text(Today()),ThisItem.Solution))
Regards,
Mona
Very cool. Thank you, I was lost.
User | Count |
---|---|
158 | |
91 | |
68 | |
63 | |
63 |
User | Count |
---|---|
210 | |
155 | |
93 | |
81 | |
71 |