Overmyhead2
Programmer
I have 2 bound fields - Percent and Data.
I need to separate the Data into two columns.
I have 2 unbound text boxes. 50andOver and Under50.
I want [50andOver] to equal [Data] if [Percent] => 50 else I want [50andOver] to equal "0".
I want [Under50] to equal [Data] if [Percent] < 50 else I want [Under50] to equal "0".
I'm using an expression for the control source for the text boxes. Things I've tried:
---------------------------------------------
=if [Percent] < "50" ,[Data],"0"
---------------------------------------------
= if [Percent] < "50" then [Under50]=[Data] else [Under50]="0" endif
I need to separate the Data into two columns.
I have 2 unbound text boxes. 50andOver and Under50.
I want [50andOver] to equal [Data] if [Percent] => 50 else I want [50andOver] to equal "0".
I want [Under50] to equal [Data] if [Percent] < 50 else I want [Under50] to equal "0".
I'm using an expression for the control source for the text boxes. Things I've tried:
---------------------------------------------
=if [Percent] < "50" ,[Data],"0"
---------------------------------------------
= if [Percent] < "50" then [Under50]=[Data] else [Under50]="0" endif