Hi,
I'm trying to make a ticketing system.
When a status value set to 'closed' or 'solved' I should get the time and set it to ClosedDate.
Would someone help, please?
Solved! Go to Solution.
Hi @Setayesh2
In the DefaultDate of DataCardValue3
If(
DataCardValue14.Selected.Value="Closed" ||
DataCardValue14.Selected.Value="Solved",
Now()
),
Parent.Default)
In the OnChange of DataCardValue14
Reset(DataCardValue14)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @Setayesh2
In the DefaultDate of DataCardValue3
If(
DataCardValue14.Selected.Value="Closed" ||
DataCardValue14.Selected.Value="Solved",
Now()
),
Parent.Default)
In the OnChange of DataCardValue14
Reset(DataCardValue14)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @Setayesh2 ,
In order to do this you will need to control DataCardValue3 with a variable. (I am assuming from your code that DataCardValue3 links with your time column).
All you need to do is set the default value for DataCardValue3 to be a variable name. Then, where you currently have your code collecting the current time, you can tell it to update that value by using the Set() or UpdateContext({}) command depending on whether you use a global or local variable.
Let me know if you need help with this and I will provide screenshots of what I mean.
Kind regards,
Matt
User | Count |
---|---|
175 | |
111 | |
86 | |
44 | |
42 |
User | Count |
---|---|
229 | |
118 | |
117 | |
73 | |
67 |