I'm using the following for thumbnail text in a view
if(isequal([Album Artist (auto)],Multiple Artists,8),,[Album Artist (auto)])
Two questions:
1) I originally tried to use an exact string of (Multiple Artists) as the comparison, but I couldn't properly escape the quotes. Here's what I thought would work.
if(isequal([Album Artist (auto)],/(Multiple Artists),1),,[Album Artist (auto)])
2) (Multiple Artists) albums still have two text lines, my expression just leaves the first line blank. Is there any way to remove the first line entirely?
Neither of these are show-stopping issues, but I have a curious mind