Hi,
i am tyring to use a calculated measure to split the "Worker"."Employee Mailing Postal Code" (Workforce Management - Person Real Time Folder) to show a column with just the "incode".
i am using the following SQL:
CASE
WHEN INSTR("Worker"."Employee Mailing Postal Code", ' ') > 0 THEN
SUBSTR("Worker"."Employee Mailing Postal Code", INSTR("Worker"."Employee Mailing Postal Code", ' ') + 1)
ELSE
NULL
END
i am new to using OTBI so any help would be appreciated?