I am writing several info into the Comment field.
Basically I have the key, then rating, the other info..
I would like to extract the key and the rating from the comment field to 2 additional fields called: KEY2 and Rating
I tried to use the left() function..but it does not work..
I did some search on the forum..and did not found what to fill in for the value , the field...
$left(x,n) returns the leftmost n characters of string x.
So, to get the first 7 characters from the left of a string (e.g. "Rolling Stones") use
$left("Rolling Stones",7)
and get "Rolling".
Instead of a string constant you can also use string variables like %artist%:
$left(%artist%,7)
or in your case
$left(%comment%,5).
But if you show us the real, typical data, it could be that $left() is not the best function for your problem.
i give a try...it works for the classic field "mood"..but not for the new field I have added...
i have created a field Key2. and Rate...to collect the key and the rating..
here the action I did: %key2% - %rate% - %mood%
result: Im able to extract the mood value: top - end
but not the key and rate