BlurredVision
Technical User
Hope someone can help me with this.
I have two fields:
ActiveProcess_ID and ArchiveProcess_ID which are located in seperate tables and linked via an outer join to a master/primary table.
I attempted to write the following formula, so that I can group on it, but it seems to ignore the ArchiveProcess_ID field and only displays the ActiveProcess_ID.
Numbervar Process_ID;
if not isnull({RV_ActiveProcess.ActiveProcess_ID}) then
Process_ID := {RV_ActiveProcess.ActiveProcess_ID} else
if not isnull({RV_ActiveProcess.ActiveProcess_ID}) then
Process_ID := {RV_ActiveProcess.ActiveProcess_ID};
Process_ID;
I hope this is enuf information to go on, How can I get around this? I am using v10 of CR, against an SQL DB.
Thank you.
I have two fields:
ActiveProcess_ID and ArchiveProcess_ID which are located in seperate tables and linked via an outer join to a master/primary table.
I attempted to write the following formula, so that I can group on it, but it seems to ignore the ArchiveProcess_ID field and only displays the ActiveProcess_ID.
Numbervar Process_ID;
if not isnull({RV_ActiveProcess.ActiveProcess_ID}) then
Process_ID := {RV_ActiveProcess.ActiveProcess_ID} else
if not isnull({RV_ActiveProcess.ActiveProcess_ID}) then
Process_ID := {RV_ActiveProcess.ActiveProcess_ID};
Process_ID;
I hope this is enuf information to go on, How can I get around this? I am using v10 of CR, against an SQL DB.
Thank you.