Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to derive a dimension called Quarter using below expression but it is not validating.
= IF([Work Order Completed Code] = {'AC', 'NA'}, [Quarter], If(Len(Trim( [Allocated Quarter] )) > 0, [Allocated Quarter], [Quarter]))
I am trying to achieve - If Work order is completed (AC, NA) then use 'Quarter' field, else if 'Allocated Quarter' field is not null then use 'Allocated Quarter' field else use 'Quarter' field.
Managed to solve the issue. Changed the statement to
= IF(match([Work Order Completed Code], 'AC', 'NA'), [Quarter], If(Len(Trim( [Allocated Quarter] )) > 0, [Allocated Quarter], [Quarter]))
Thanks
Managed to solve the issue. Changed the statement to
= IF(match([Work Order Completed Code], 'AC', 'NA'), [Quarter], If(Len(Trim( [Allocated Quarter] )) > 0, [Allocated Quarter], [Quarter]))
Thanks