DISPLAY A IMAGE IN LONGTEXT (HTML)

Im having a trouble for displaying the Image to the table, it has no images display (will send an attachment photo that image doesn’t display)

I want to have an output like this.

PARAMETER CATEGORY FINDINGS REMARKS IMAGE
sample parameters sample category sample findings sample remarks IMAGE WILL DISPLAY HERE

Thanks!

CONCATENATE(

”,
“”,
“”,
“”,
“”,
“”,
“”,
“”,
“”,
“”,
“”,
“”,
“”,
“”,
“”,
PARAMETERSCATEGORYFINDINGSREMARKSIMAGE
Sample ParametersSample CategorySample FindingsSample Remarks”,
IF(
ISNOTBLANK([caf1IM]),
CONCATENATE(
“<img src=”“”,
https://www.appsheet.com/template/gettablefileurl?appName=B05-756790143”,
“&tableName=checklist1&fileName=”,
[caf1IM],
“”" style=‘width:100px;height:auto;’/>"
),
“”
),

)