Issue report by Hector Gil
Product
FileMaker ProVersion
12 advancedOperating system version
Windows 7Description of the issue
When assigning values to a repeating variable using variables for the index FM assumes the variable is not repeating thus ignoring the index.Steps to reproduce the problem
The following works:Set Variable [$$M[1]; Value:1]
Set Variable [$$M[2]; Value:2]
.
.
Set Variable [$$M[9]; Value:9]
The following does not works:
$idxName = 1
$idxLabel = 2
$idxIcon = 9
Set Variable [$$M[$idxName]; Value:1]
Set Variable [$$M[$idxLabel]; Value:2]
.
.
Set Variable [$$M[$idxIcon]; Value:9]