I have fields
ID Stage
1 Finished
1 NC
1 NULL
2 Finished
2 NC
2 NULL
2 Finished
I wrote formula StageStatus
If isnull{table.stage} or {table.stage}='Finished' then 1 else0
Then I am inserting field SUM@StageStatus
and I am getting result:
ID Finished
1 2
2 3
This Report is done.
Now they want reversed version where there is
Promised >= Finished.
Promised is a Number field.
However Finished is SUM of the StageStatus formula.
How do I go with :
selecr data where Promised>= SUM@StageStatus???
Result I am looking for:
ID Promised Finished
2 3 3
Thanks for all help
ID Stage
1 Finished
1 NC
1 NULL
2 Finished
2 NC
2 NULL
2 Finished
I wrote formula StageStatus
If isnull{table.stage} or {table.stage}='Finished' then 1 else0
Then I am inserting field SUM@StageStatus
and I am getting result:
ID Finished
1 2
2 3
This Report is done.
Now they want reversed version where there is
Promised >= Finished.
Promised is a Number field.
However Finished is SUM of the StageStatus formula.
How do I go with :
selecr data where Promised>= SUM@StageStatus???
Result I am looking for:
ID Promised Finished
2 3 3
Thanks for all help