In case you are not aware there is a new string sytax for building strings with variables. Where you used to do this:
"Total records: " & CountRows( colMyRecords );
-or-
Concatenate( "Total RecordsL ", CountRows( colMyRecords ) );
can now be expressed like this:
$"Total records: {CountRows( colMyRecords )}"
This works, that is until you save and reopen your app. When you do that, the above is being changed to:
ConcatenateTotal records: {CountRows( colMyRecords )}"
which obviously generates an error.
If someone from MS is seeing this, this is a bug. How should this be reported?
Thanks.