Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
When I make more than 6 selections in the table, it says the unselected options on the label. I want to print "NOTE" at the beginning of the unselected options. EX: Not august, july..
how can I do it?
Label Fx:
=if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Jan*'),'Jan, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Feb*'),'Feb, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Mar*'),'Mar, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Apr*'),'Apr, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*May*'),'May, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Jun*'),'Jun, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Jul*'),'Jul, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Aug*'),'Aug, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Sep*'),'Sep, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Oct*'),'Oct, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Nov*'),'Nov, ','')&
if(wildmatch(GetFieldSelections([TALEPOLUSTURMATARIHI.autoCalendar.Month]),'*Dec*'),'Dec, ','')
Hello ardtkmn,
GetFieldSelections has a max values parameter. Default is 6. You can specify label with just one use of function like this:
GetFieldSelections ([TALEPOLUSTURMATARIHI.autoCalendar.Month], ',', 100)
Hello ardtkmn,
GetFieldSelections has a max values parameter. Default is 6. You can specify label with just one use of function like this:
GetFieldSelections ([TALEPOLUSTURMATARIHI.autoCalendar.Month], ',', 100)