Ask a Question related to Microsoft Access, Design and Development.
-
Kerman #1
Expression result not entered in table
How do I get the result of an expression entered in a table? I have this
expression as the control source: =[Sample Size]-[Edible Kernels]-[Inedible
Kernels] but I need the result of this expression such as: 10.2 entered in
the field named: "ForMat" in my table...What should I do?...Thanks..>Randy
Kerman Guest
-
How to display result from two different table
Hi all Iam in a problem. Anyone plz help me in retreving data into single datagrid from two different queries. Thanks in adavance vasu -
Problem with casting when using common-table-expression
Hi everyone, I have a very strange problem. I'm not an expert with DB2, but I don't think I ever faced that kind of problem with any other DBMS.... -
Changing a html table when new data is entered into SQL table.
Hi all, I was wondering if anyone has any ideas on how I would go about this task. What I have is a html table which is populated from 2 different... -
Result precision and scale for decimal arithmetic expression and
Here is your answer which you can also find by using ESQL/C program to describe the query and then use PRECISION and SCALE arguments to see the... -
Result precision and scale for decimal arithmetic expression and aggregate function
Lan Huang wrote in message <48e0b0fb.0306270915.2a98365c@posting.google.com>... It depends. The easiest way to tell is to run your query... -
Allen Browne #2
Re: Expression result not entered in table
Would it represent an error if there was ever a case where the ForMat field
did not match the formula?
If so, use a query with calculated field instead of storing the dependent
data in your table. In query design view, type this into a fresh column on
the Field row:
ForMat: [Sample Size]-[Edible Kernels]-[Inedible Kernels]
Since the query can never be wrong, your worries are over.
If there could be a valid difference, you will need to enter the data
through a form, and use the AfterUpdate event of all 3 fields to put the
result into the ForMat text box. The Event Procedure will look like this:
Me.ForMat = Me.[SampleSize] - Me.[Edible Kernels] - Me.[Inedible
Kernels]
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - [url]http://allenbrowne.com/tips.html[/url]
Reply to the newsgroup. (Email address has spurious "_SpamTrap")
"Kerman" <kerspi@inreach.com> wrote in message
news:6VdTa.805$Hh5.683@news.inreach.com...Kernels]-[Inedible> How do I get the result of an expression entered in a table? I have this
> expression as the control source: =[Sample Size]-[Edible> Kernels] but I need the result of this expression such as: 10.2 entered in
> the field named: "ForMat" in my table...What should I do?...Thanks..>Randy
Allen Browne Guest



Reply With Quote

