Steps to reproduce, FYI for anyone that runs into this:
<<Start: SELECT(table[UniqueID],[STATE] = [_THISROW].[STATE])>> <<[SomeField]>>: <<[Another Field]>> <br/> <<End>>
This fails, appsheet says it cannot find the function โSTART: SELECTโ - if you use actual < and > you get a different error.
<<Start: SELECT(table[UniqueID],[STATE] = [_THISROW].[STATE])>>
<<[SomeField]>>: <<[Another Field]>><<End>>
Let me know if you have ever seen this, or, put more simply: anyone have a working example of a start expression with an arbitrary select statement, and using the HTML output type?
Solved! Go to Solution.
The error is occurring because in the failing HTML file, the Start/End expression is not inside an HTML <p>
or <heading>
element. Instead, the Start/End expression is at the bottom of the HTML <body>
element. This is causing a parsing problem that is not easy for me to fix. You can circumvent the problem by enclosing that Start/End expression in an HTML <p>
element.
The HTML at the bottom of the file currently looks like this:
<p><<End>></p>
<br />
<br /><<Start: Select(Parent[Key],True)>>[Name]<br /><<End>></body>
</html>
It needs to look like this:
<p><<End>></p>
<br />
<br /><p><<Start: Select(Parent[Key],True)>>[Name]<br /><<End>></p></body>
</html>
User | Count |
---|---|
18 | |
11 | |
7 | |
4 | |
3 |