filemaker

Pushing term 1 results into term 3 fields for new students joining mid-year

前提是你 提交于 2019-12-25 05:26:10
问题 I have a table that contains test marks from different terms, ca1_percent , sa1_percent , ca2_percent and sa2_percent . These 4 fields reside in the Results table that contains results from the different terms. I used a self-relationship linking using the matched field overall_percent_match which is calculated using year & " " & subject & " " & _kf_studentID . This relationship allows me to obtain the test results from past terms (of a year). For example, my term 3 results will contain

In XSLT for MODS XML to FilemakerPro conversion, how treat a mod with a parameter?

放肆的年华 提交于 2019-12-25 01:55:17
问题 Referring to query XSLT to translate Zotero xml output to FMPXMLRESULT xml?, how in the XSLT do I refer to a mod such as: <genre authority="marcgt"> book </genre> (There are multiple mods beginning genre authority , each with a different parameter. So what is the syntax in the XSLT for that? I tried the following, but Filemaker says there's a syntax error. <COL> <DATA> <xsl:value-of select="mod:genre authority=""marcgt""" /> </DATA> </COL> 回答1: The select is looking for a node to pick, it

Calculated Fields and increments

為{幸葍}努か 提交于 2019-12-25 00:57:36
问题 I am building a system using Starting Point and need help with calculated fields. Basically when an estimate is created it takes the same ID as the project its linked to with a "-1" 1 being incremental value. So if the increment -1 exists the next estimate for that project would be -2 and so on. So for example Project Id: 120000 First Estimate: 120000-1 Second Estimate: 120000-2 I have found out how to add a hyphen and number after the project ID (the stored as estimate ID) like so id_project

how to handles if-else in groovy?

别等时光非礼了梦想. 提交于 2019-12-24 23:08:09
问题 Here I'm passing the skipfolders variable in input if the skipfolders is true then it prints all files from Parent path and skip the sub folders. otherwise it returns all files from all folders include sub folders as well. Here I wrote if-else conditions. When I execute this code in FileMaker it executes without any errors and displayed result.but the if-else conditions does't working here. Problem : If-else conditions doesn't working here.it prints all files from FTP include subfolders

Wrap column names in double quotes in Hibernate

…衆ロ難τιáo~ 提交于 2019-12-24 11:01:04
问题 I'm using Spring JPA 2.0.9 with Hibernate 5.3.5 and this dialect to access a FileMaker (v16) database via JDBC using the official JDBC driver taken from this distribution. The thing is that the resulting SQL ends up being with column names prefixed by the respective table names like: select marketingc0_.a__IDPK_MarketingCategory as a__IDPK_1_0_0_, marketingc0_.Active as Active2_0_0_ from MarketingCategories as marketingc0_ where marketingc0_.a__IDPK_MarketingCategory=1 which FileMaker doesn't

Applescript to (if/then) determine file type and choose correct program to open and print file (within batch sequence)

岁酱吖の 提交于 2019-12-24 06:38:23
问题 I have culled together an applescript with great help from @chuck and other board posts to effectively batch print a list of files exported from filemaker containers to a folder called "print" on my desktop. The problem I'm running into now is some of those container exports are not PDF (its a mix of Jpg, PNG, Tif and PDF) and will not open using acrobat (using preview for the PDF or any other PDF viewer is out of the question for a myriad of reasons)... This problem is effectively shutting

Using IsEmpty function in a filemaker Pro (v9) calculation with multiple fields

浪子不回头ぞ 提交于 2019-12-24 00:48:59
问题 I want to write a simple calculation to return a value based on a heirarchy of fields. If the first field is empty, I want it to return the second, and if the second is empty, the third. I have tried the following but it only returns the first value. If (IsEmpty (Field1 = 1) ; Field2; If (IsEmpty (Field2 = 1); Field3; Field1)) I was able to get the first or third value to appear by using: If (IsEmpty (Field1) & If (IsEmpty (Field2); Field3; Field1)) But of course this doesn't show the Field2

Work with FileMaker Pro FP7 Files

穿精又带淫゛_ 提交于 2019-12-24 00:20:07
问题 Is it possible to work with FP7 file using the FileMaker ODBC driver without actually needing to have FileMaker installed? I can't seem to get it to work unless I have FileMaker open, with the database file opened. I periodically need to export an FP7 file to somebody who is only willing to accept FP7 files because of "The Process". 回答1: No. The only way not to open FileMaker itself is to have the file permanently open on FileMaker server and ODBC from there, but you'll need the most

Filemaker sum by group

亡梦爱人 提交于 2019-12-23 03:15:19
问题 So I've been asked to use Filemaker to put together a large DB consisting of some financial information, alongside other data. Coming from a MSSQL background, many of the commands seem abstract to me. One of the simplest I'd like is a summary of a value column based on a data type column: DataType|Value 1 |10 1 |20 1 |10 2 |5 2 |10 I'd be looking for the result of DataType 1 = 40 and DataType 2 = 15. This would be straightforward in SQL using a GROUP BY clause etc, but I'm having issues in FM

Conditional Statements in XSLT when having to choose a tag from several elements

假如想象 提交于 2019-12-22 00:43:12
问题 I am relatively new to XSLT but am trying to learn it to provide a solution for a client. Although the ultimate aim is to write an XSLT for Filemaker Pro, I would like to first get the HTML one right. I receive a generated XML file which contains booking information for tours. The informatio it contains as well as the number of orders also varies. The XSLT is needed to present all the XML info in a more presentable table form. My problems begin when I put in the conditional statements. In the