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

Evaluate a field in VBscript Macro to see if its Null

Hi

i have a Macro using VBscript that exports data to a CSV, but i want to do an evaluation to determine in a field is null and if its null, don't export.

Sub Export

ActiveDocument.Fields("Date.Gregorian").Select("*")

set sObject = ActiveDocument.GetSheetObject("CH05")

File = ActiveDocument.Evaluate("'AR'  & '.csv'")

sObject.Export "C:\Users\ThisUser\Desktop\"&File ,","

End Sub

i cannot determine whether the field is null at reload time as sometimes it will be null, and other times it will have data and is dependent on the select statement above, and i only want it to export if there is data associated with the selected field.

I know i need to put in an IF statement for the evaluation, but just dont know what statement i need to enter.

Any help would be great.

0 Replies