Hello there,
Please help me on this issue. It might be simple but I'm a newbie here. I want to add multiple values on my Notes(textbox) separated by semicolon from two objects (TypeofBox(dropdown) and NumberofBox(textbox) when they click the (+) plus icon.
Dropdown has two values: LCM/Battery and Parts
Below is the view.
So that output on my Notes should be "LCM/Battery: 4 ; Parts: 5"
I cannot figure it out. I tried concat but no luck.
Thanks in Advance
Echo.
Solved! Go to Solution.
I @echodapogi ,
I assume this is triggered off the + sign? - you will need a Variable
Firstly at Screen OnVisible or anywhere else you need to start a new order
UpdateContext({varNotes:YourNotesBox.Text()})
The on the OnSelect of the Plus icon
UpdateContext(
{
varNotes:
varNotes & TypeOfBoxDDName.Selected.Value & "; Parts: " & NumberOfBoxName.Text
}
);
Reset(YourNotesBoxName)
then the Default of the Notes box
varNotes
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 @echodapogi ,
You need
YourTypeOfBoxDDName.Selected.Value & ":" & YourNumberOfBoxName.Text & "; Parts:" & YourBatchBoxName.Text
I have assumed your dropdown is a Choice column, otherwise .Value may be different.
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.
Hello @WarrenBelz ,
First, Thank you so much for your reply. Its working when i select the dropdown box and numberofbox. but what i need is how to append multiple values from dropdownbox and number of box. Right now, it only display one value based on the selection. i want to add multiple values by clicking + sign.
I just manually type the values on the notes to show what i need. 🙂
Thanks again. hoping your reply.
I @echodapogi ,
I assume this is triggered off the + sign? - you will need a Variable
Firstly at Screen OnVisible or anywhere else you need to start a new order
UpdateContext({varNotes:YourNotesBox.Text()})
The on the OnSelect of the Plus icon
UpdateContext(
{
varNotes:
varNotes & TypeOfBoxDDName.Selected.Value & "; Parts: " & NumberOfBoxName.Text
}
);
Reset(YourNotesBoxName)
then the Default of the Notes box
varNotes
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.
thanks so much. 🙂
User | Count |
---|---|
194 | |
123 | |
86 | |
48 | |
40 |
User | Count |
---|---|
277 | |
165 | |
139 | |
80 | |
76 |