Hi Ash,
Welcome to this newsgroup. You appear to be posting your answers via the
Microsoft web portal:
http://www.microsoft.com/office/com...cess&mid=42f3e8df-ef7c-4b12-89dc-efcef9229b5c
since one can click on your profile name (ashg657) and see that you
joined
on 3/22/2006, and, as of right now, have made a total of 8 posts. These
features, along with the ability to rate a post, are available only to
those
who access the newsgroup via this web page. However, if someone uses
another
newsreader, such as Outlook Express, they will not see any command
buttons
for rating a post.
A question was posted using the web portal if you see a small brown
circle
with a white question mark. If you do not see that symbol, then the
person
who posted the question did not use the web portal.
Tom
http://www.access.qbuilt.com/html/expert_contributors.html
http://www.access.qbuilt.com/html/search.html
__________________________________________
:
Hey Tom,
Can i ask a quick question? Web portal?
Ive only just started posting answers on here, i want to help others
out but
want to get rated as helpful could you explain some more?
thanks in advance.
--
Ash
Don''t forget to rate as helpful if I have helped you,Thanks!
(e-mail address removed)
:
Or, better yet:
Total: Nz([Price],0) + Nz([ShippingCost],0)
AND
=Nz([Price],0)+Nz([ShippingCost],0) as the control source.
Nz([FieldToTest],ValueIfNull) will cause the result to show up as 0
instead
of #Error, if either the Price or ShippingCost fields are null. Of
course,
you could also just apply the function one time to the result. For
example:
Total: Nz(([Price]+[ShippingCost]),0)
On your other comment, regarding rating the post, the OP will likely
not
have a clue what you meant, because the question was not posted via
the
Microsoft web portal.
Tom
http://www.access.qbuilt.com/html/expert_contributors.html
http://www.access.qbuilt.com/html/search.html
__________________________________________
:
Oooops it should be:
Total

[Price]+[ShippingCost])
AND
=([Price]+[ShippingCost]) as the control source.
--
Ash
Don''t forget to rate as helpful if I have helped you,Thanks!
(e-mail address removed)
:
Hiya,
There are a couple of ways around achieving this:
- If you are using a query you can add the following statement
into the
Total field in query design view. "TOTAL:[Price]+[ShippingCost]"
- Alternatively you can just display the Total if you are using a
form in a
text box. In the text box you would need to set its ControlSource
to
"[Price]+[ShippingCost]"
Hope that helps,
Ash.