简体   繁体   English

MS Access 2003字段值[]

[英]MS Access 2003 Field Value []

One of the fields in the MS Access Form has the value as =[OpenThisMonth]+[ClosedThisMonth] in the Design View. MS Access表单中的一个字段在设计视图中的值为=[OpenThisMonth]+[ClosedThisMonth] I tried figuring out what these values stand for. 我试图弄清楚这些价值观代表什么。 It is not a database field. 它不是数据库字段。 It is not present in the form itself as any other field. 它不以任何其他字段形式出现在表单中。 It is not a macro too. 它也不是宏。 I do not understand the syntax either. 我也不明白语法。 Does anyone know what it might represent. 有谁知道它可能代表什么。

If I click on the control source of the field. 如果我单击该字段的控制源。 I get this - Link 我明白了- 链接

EDIT 编辑

SELECT DISTINCTROW clients.*,
                   businesscodes.businesstype,
                   firstname + "" + lastname AS HContact,
                   brokers.brokername,
                   brokers.contact
FROM   ((clients
         LEFT JOIN businesscodes
                ON clients.businesscode = businesscodes.businesscode)
        LEFT JOIN hamiltoncontacts
               ON clients.hamiltoncontact = hamiltoncontacts.hamiltoncontact)
       LEFT JOIN brokers
              ON clients.brokernumber = brokers.brokernumber
ORDER  BY clients.clientname; 

Answering my own question here -- 在这里回答我自己的问题-

There was a subform which had fields by the name OpenThisMonth and ClosedThisMonth 有一个子窗体,其字段名为OpenThisMonth和ClosedThisMonth

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM