Forum Discussion
SouheilKaram1
6 years agoQrew Trainee
Hi Ashis,
If you have the name of each image file that is on AWS in a field in QuickBase table, for example [qbimage], then you can create a formula field in quickbase as such:
If(Length([qbimage])>0,"<img style='max-height:100%; max-width:100%;width:100px' src='[URL to AWS]" & ([qbimage]) & "'/>","")
If you don't have the name of each image in you quickbase database you might have to resort to a way to add the image names into your table. Make sure the image file names have a pattern or have a name like dbid_rid pattern where [dbid] is the table id and rid is the record that the image belongs to.
------------------------------
Souheil Karam
------------------------------
If you have the name of each image file that is on AWS in a field in QuickBase table, for example [qbimage], then you can create a formula field in quickbase as such:
If(Length([qbimage])>0,"<img style='max-height:100%; max-width:100%;width:100px' src='[URL to AWS]" & ([qbimage]) & "'/>","")
If you don't have the name of each image in you quickbase database you might have to resort to a way to add the image names into your table. Make sure the image file names have a pattern or have a name like dbid_rid pattern where [dbid] is the table id and rid is the record that the image belongs to.
------------------------------
Souheil Karam
------------------------------
- AshishAgarwal6 years agoQrew MemberWorked like magic. Thank you so much.
------Original Message------
Hi Ashis,
If you have the name of each image file that is on AWS in a field in QuickBase table, for example [qbimage], then you can create a formula field in quickbase as such:
If(Length([qbimage])>0,"<img style='max-height:100%; max-width:100%;width:100px' src='[URL to AWS]" & ([qbimage]) & "'/>","")
If you don't have the name of each image in you quickbase database you might have to resort to a way to add the image names into your table. Make sure the image file names have a pattern or have a name like dbid_rid pattern where [dbid] is the table id and rid is the record that the image belongs to.
------------------------------
Souheil Karam
------------------------------