Hello
I am trying to create a searchable field for the targets that my archaeoligists visit
The target list resides in a CSV called z_FeatureTargetList.csv in the media folder and is formatted as shown below
list_name | name | label |
TargetNo | A001 | A001 |
In the Survey form iwrote the following:
select_one TargetNo | TargetNo | <b>Select the Target Name</b> | minimal search('z_FeatureTargetList') |
However the error I get when attempting to save the form is that 'TargetNo' is not in the choice list.
My understanding of what I read is that iof I indicate a CSV in the search function, it would look for 'TargetNo' in the CSV and not in the choice list.
What am I missing?
Oh... Is it possible to add scroll bars as well?
Thanks in advance for your help...
Andreas
Solved! Go to Solution.
@AKorsos I believe what you need to do is modify your xlsx form as follows:
select_one z_FeatureTargetList.csv | TargetNo | <b>Select the Target Name</b> |
And also you need to modify your csv file as follows:
name | label |
A001 | A001 |
@AKorsos I believe what you need to do is modify your xlsx form as follows:
select_one z_FeatureTargetList.csv | TargetNo | <b>Select the Target Name</b> |
And also you need to modify your csv file as follows:
name | label |
A001 | A001 |