I am trying to insert data into SQL from an entry that has multiple multi value fields and non multi value fields. Looking at other answers, I am trying to apply indexing, but I am getting two more rows in my database than I have entries in my multi value fields. In fact it is repeating the last row two extra times. I have two values in all the multi value fields but getting four rows in the database
I repeat a similar step for both the Bill Days and the Meter Code to attempt to apply an index
From previous runs in testing the activity tokens are being reported as:
and :
I am needing it to insert into SQL with the following:
Billing_Days Meter_Code
30 MR
23 AR
What I am getting is:
Any ideas what's producing the extra two rows to be inserted?