简体   繁体   English

Appsheet 使用图像 url 作为第二个表中的图像

[英]Appsheet use image url as image from second table

I am trying to use the url for the image reference on my app sheet using Virtual Column but the problem is it wont detect as Image but instead as List我正在尝试使用 url 在我的应用程序表上使用虚拟列作为图像参考,但问题是它不会检测为图像而是列表

by the way, image links are listed on the Sheet2顺便说一下,Sheet2 上列出了图片链接

If you're storing that value inside a separate table, just as a place to store the variable, you've got the right idea - you just need to extract the first value out of your list.如果您将该值存储在单独的表中,就像存储变量的地方一样,那么您的想法是正确的 - 您只需要从列表中提取第一个值。

The following syntax creates a list of all the values in a column for a table:以下语法为表创建列中所有值的列表:

  • Table[Column]表[列]

This tells the system to go to the table "Table" and pull every value in the column "Column", creating a list of the values (including the blanks, not counting blanks past the last row in the sheet of course).这告诉系统 go 到表“表”并拉出“列”列中的每个值,创建值列表(包括空白,当然不计算表格中最后一行的空白)。

To get the first value out of that list:要从该列表中获取第一个值:

  • index(table[column], 1)索引(表[列],1)

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

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