Page 1 of 1

Auto-Organize mask question?

Posted: Sun Oct 22, 2023 12:04 pm
by tmf
How do you add parentheses, as text '()', around a <MM data field> in an Auto-Organize mask $if statement? I would think this should be possible, but nothing I've tried seems to work?

So far this seems to work for what I am trying to do, but I would like to add parentheses around the Disc#:2 field:
X:\Music\<Album Artist>\$if(<Conductor>,<Conductor>)\$if(<Conductor>,<Disc#:2> <Album>, <Album>)\<Artist> - <Album> - <Track#> - <Title>

This is what I would like to have (added parentheses around (<Disc#:2>) field):
X:\Music\<Album Artist>\$if(<Conductor>,<Conductor>)\$if(<Conductor>,(<Disc#:2>) <Album>, <Album>)\<Artist> - <Album> - <Track#> - <Title>

Thanks

Re: Auto-Organize mask question?

Posted: Mon Oct 23, 2023 11:34 am
by Lowlander
It needs to be:

Code: Select all

X:\Music\<Album Artist>\$if(<Conductor>,<Conductor>)\$if(<Conductor>,(<Disc#:2>$) <Album>, <Album>)\<Artist> - <Album> - <Track#> - <Title>

Re: Auto-Organize mask question?

Posted: Mon Oct 23, 2023 4:55 pm
by tmf
Lowlander wrote: Mon Oct 23, 2023 11:34 am It needs to be:

Code: Select all

X:\Music\<Album Artist>\$if(<Conductor>,<Conductor>)\$if(<Conductor>,(<Disc#:2>$) <Album>, <Album>)\<Artist> - <Album> - <Track#> - <Title>
Thank You, Lowlander! Works perfectly!