Is there a way to either show or hide and image on a report depending on the value of another field? I am editing the report as a .docx not .rdlc, so I am looking for a solution using AL and Word.
Thanks,
J
Is there a way to either show or hide and image on a report depending on the value of another field? I am editing the report as a .docx not .rdlc, so I am looking for a solution using AL and Word.
Thanks,
J
Can you elaborate a little more? I am doing this on a report extension and OnInitReport() is not a valid trigger I'm finding.
Would mean having an If statement in AL to skip the calculation of the blob or media set field. There is no way to do this in word.
Example being on the header of sales documents the picture from the company information table is calculated:
trigger OnInitReport()
begin
CompanyInformation.Get;
CompanyInformation.CalcFields(Picture);
end;
Sohail Ahmed
2,655
Mansi Soni
1,574
YUN ZHU
1,453
Super User 2025 Season 1