07-25-2013 09:33 AM
i have a 2 local variables that are of custom data type, a container with 2 u64 numbers i am trying to assign numbers to these variables using the statement step but the variables do not get changed, here is my statement:
Locals.excelStartColRow.Column == 1ui64,
Locals.excelEndColRow.Column == 3ui64
i do not get any errors but the values do not get updated so the VI i use these variables with fails, any ideas?
Solved! Go to Solution.
07-25-2013 09:58 AM
== is a comparison. You want set a value, which is =
07-25-2013 10:02 AM
thanks, fixed my issue, newbie mistake