Hi,
I have two form in ax Calculation and Results.
On results I have a button which takes me to form calculation.
When I select multiple records from results form and open the calculation form, I make few changes.
On form calculation I want to click a button which will replicate all the new changes I made and show the output for all the lines in results form.
Form 1:REsults
ItemID | Qty | Remaining |
7890 | 50 | 90 |
9870 | 80 | 89 |
0987 | 90 | 09 |
I select all the three lines and hint on calculation.
Calculation form:
ItemId | Qty | Remaining |
7890 | 1000 | 67 |
Now when I hint calculate result button from within the calculation form, it will open the results form.
Right now I am getting the results as:
ItemID | Qty | Remaining |
7890 | 1000 | 67 |
9870 | 80 | 89 |
0987 | 90 | 09 |
Whereas I need my result to look as:
************************************************************************************************************************
ItemID | Qty | Remaining |
7890 | 1000 | 67 |
9870 | 1000 | 67 |
0987 | 1000 | 67 |