Hello all,
I have an enumlist column that uses a valid if to determine its options.
SPLIT(SELECT(Load Tracking Data[Job ID], ([Site Timesheet] = [_THISROW].[Site_Mo])), ", ")
The number of enumlist options varies.
If there is only one option I would like to have it selected (initial value?)
And also hidden, this I can manage.
I tried to do this in the initial value:
IF(Count(SELECT(Load Tracking Data[Job ID], ([Site Timesheet] = [_THISROW].[Site_Mo]))<=1,FIND(“,”,SELECT(Load Tracking Data[Job ID], ([Site Timesheet] = [_THISROW].[Site_Mo]))),TEXT(“”))
Attempting to count the number of entries, and if it is <=1 then auto select it but it doesnt work.
Does anyone have a better idea?