Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to override an image using macro?

Hi All

How to override already existed files in file system using macro.

thanks.

1 Reply
Not applicable
Author

Hi,

you can try to delete the image before to write.

for example

If NOT IsNull(FileTime('C:\prueba.csv'))  THEN
EXECUTE cmd.exe /C del 'C:\prueba.csv';
ENDIF

it will delete your image and when save the other.

I hope i help you!