Hello,
I want to generate report for all tested POINT of one ESD test. I assume I don't know how many point were tested.
I want write a report that match all tests with any number of points tested. In the user manual, I've found the code for one point, for example: ||NEG AIR MEASURED POINT x||
But I wan't to automate the report, without adapt the template like ||NEG AIR MEASURED POINT 1||, ||NEG AIR MEASURED POINT 2||, ...
Are this point organized in TABLE? in LIST?
How can I adress them? A solution with SQL queries? I've tried ||SELECT ALL FROM POINTTABLE||, but it doe not work
Best regards
Blaise
Reporting all tested POINT IN one ESD
Re: Reporting all tested POINT IN one ESD
I would like to inform you that all tested ESD data points can be exported using the ||TESTPOINT TABLE|| keyword.
On this table SQL queries can also be performed to further customize the output inserted into the reports if needed.
I hope to have informed you!
With kind regards,
On this table SQL queries can also be performed to further customize the output inserted into the reports if needed.
I hope to have informed you!
With kind regards,
Re: Reporting all tested POINT IN one ESD
Many thanks for the answer! Now it works fine
Best regards
Best regards
Re: Reporting all tested POINT IN one ESD
Althoug I've noticed a strange behavior for the NOTE field in TESTPOINT TABLE:
The code
work fine for all NOTE, excepted one: The negative contact discharge NOTE will not be reported?
Best regards
Blaise
The code
Code: Select all
||SELECT [TESTPOINT DESCRIPTION],[DISCHARGE LOCATION],[DISCHARGE TYPE],TESTLEVEL,NOTE,RESULT FROM TESTPOINT TABLE||Best regards
Blaise