MobileSheets Forums

Full Version: Song title + Custom field
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
But Hello,

in the song list i want my songs to get listed as

Code:
song title - custom field

I want to hide the "-" if the custom field (a song number) is empty.
In the subtitle i use something like the following, which works:

Code:
%CUSTOM:${VALUE} - %%COLLECTIONS%


I want the number after the title. So i wrote

Code:
%TITLE% % - CUSTOM:${VALUE}%

But this ends in

Code:
song title % - CUSTOM:${VALUE}%

I wantto do this change to see the song number on the top bar of each sheet.
I think the format string you are looking for is this:

%TITLE% %CUSTOM:- ${VALUE}%

Mike
That works.
Thank you.