Long time user, first time poster.
I'm looking to create a formula to force %discnumber% to be blank if the length of discnumber is only 1. The reason I'm looking to do this is because I convert Tag -> Filename using disc numbers if they exist, otherwise just keep with the album name. That formula is:
$if(%discnumber%,%album% (Disc %discnumber%),%album%)
I already have %discnumber% being formatted from 1/2 to "1 of 2", too. That's automatic. The problem I'm facing is:
$if($len(%discnumber=1),, %discnumber%)
is creating an "empty" box rather than a box. Is there a way to do this so I don't have to worry about accidentally blanking a multi-disc set?