Page 1 of 1

Name Variable My Rating

Posted: 2014-05-11 00:01:24
by al0203
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.

Posted: 2014-05-11 01:57:14
by Raoul_Volfoni
Hi,
al0203 wrote:Which is the name for the variable My Rating?
It's fieldUserRating.

al0203 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.
If the tag of your custom field is also Nota, this little script should do the trick

Code: Select all

program Nota_to_UserRating;
begin
SetField(fieldUserRating,GetCustomField('Nota'));
end.
If the tag is different, just change Nota by the value of your custom field tag.

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.
You have to click on column headers to assign fields to them.