QUOTE(Generalverdacht @ Apr 24 2006, 10:30 AM)

could you please describe this a little further? i had it once, like i liked it: if i had a single track from an album, there was artist- album (in the album comulmn) and title in the regular title column, how can i handle that? if i have a whole album with tracknumbers, everything is great.
Download
my fcs and take a look at it. I have a global $if that sets is_single=1 when a file has no tracknumber or album tag. Then in the artist column that is the first thing it looks at.
in global variables:
CODE
$if($not(%tracknumber%),is_single=1,$if($not(%album%),is_single=1))
in artist column:
CODE
$if(%_is_single%,
$if(%artist%,$if($greater($len(%artist%),25),
$cut(%artist%,23)'…',%artist%),'(Untagged)'),
<rest of album code for display of full albums>
If you have more questions you should start a new thread rather than talk about this stuff in this one.