(Msg. 1) Posted: Thu Oct 02, 2008 11:13 am
Post subject: Creating Expression (Formula) Archived from groups: microsoft>public>access>tablesdbdesign (more info?)
Hi,
I have created forms by using the Wizard from table.
In form there are two comboboxes named"Biceps" and "Elbow" and one textbox
"Total" . Now for example, if score of "Biceps" is 2 and score of "Elbow" is
3 then "Total" of values should be 5.
How can I creat a formula (Expression) that automatically adds value from
field "Biceps" and "Elbow"?
(Msg. 2) Posted: Thu Oct 02, 2008 12:05 pm
Post subject: RE: Creating Expression (Formula) [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
Hi Nirav,
the answer is simple: add a new unbound textbox on the form and set its
control source property as follow:
= Nz([Biceps];0) + Nz([Elbow];0)
The Nz function is aded to suppress the emty value Null because Null +
anyting = Null
--
Kind regards
Noëlla
"Nirav" wrote:
> Hi,
>
> I have created forms by using the Wizard from table.
>
> In form there are two comboboxes named"Biceps" and "Elbow" and one textbox
> "Total" . Now for example, if score of "Biceps" is 2 and score of "Elbow" is
> 3 then "Total" of values should be 5.
>
> How can I creat a formula (Expression) that automatically adds value from
> field "Biceps" and "Elbow"?
>
> Please help.
All times are: Eastern Time (US & Canada) (change)
Page 1 of 1
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum