I am counting the number of rows in the row-find and storing it in a temporary dataview field dvFilter.RowCount. I have confirmed that this value gets stored each time I execute the button click. In the condition i check to see if the value of dvFilter.RowCount is greater than 0. This is working
Next when I see that dvFilter.RowCount is greater than 0 I want to increment that stored value and assign it to the value of SplitID in a different data view, dvUpdate.SplitID.
All attempts to increment to increment this value and display in this new row have resulted in something that resembles this
You said dvFilter was a temporary dataview right? I know with transview it seems like any field you define on the fly gets stored as a string. Maybe you can define RowCount in the dataview and make it an Int so you can do math on it?
Maybe just ditch the double quotes altogether? I tried doing a test with the row-update widget and just putting {dataview.column}+1 in the expression field worked.
If removing the quotes doesn’t work you could add a row then update it with row-update.