Which is the name for the variable My Rating?
When I look in the programs help it saids UserRating, but when I try to use it, it returns me an error.
In the old version I had created a custom variable call Nota (Real 1) and I´m trying to copy this values to the new field My Rating.
When you import an AMC file, is it the possibillity to change the variable of a colum data? When you import from an excel you can chose which colum goes with which variable.
Name Variable My Rating
-
- Posts: 863
- Joined: 2006-08-31 23:58:18
Hi,
If the tag is different, just change Nota by the value of your custom field tag.
It's fieldUserRating.al0203 wrote:Which is the name for the variable My Rating?
If the tag of your custom field is also Nota, this little script should do the trickal0203 wrote:In the old version I had created a custom variable call Nota (Real 1) and I´m trying to copy this values to the new field My Rating.
Code: Select all
program Nota_to_UserRating;
begin
SetField(fieldUserRating,GetCustomField('Nota'));
end.
You have to click on column headers to assign fields to them.al0203 wrote:When you import an AMC file, is it the possibillity to change the variable of a colum data? When you import from an excel you can chose which colum goes with which variable.