Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
arethaking
Creator II
Creator II

CALL TraceRowCount('Aircraft Types');

Hi,

What is the meaning of the syntax.

CALL TraceRowCount('Aircraft Types');

1 Solution

Accepted Solutions
Kushal_Chawda

You are calling the Sub routine with name "TraceRowCount" and Parameter "Aircraft Types"

This will give you Total row count of the Table "Aircraft Types"

Possible code could be

Sub TraceRowCount (vTableName)

TRACE "Total Rows of Table " $(vTableName) &'is:' & NoOfRows('$(vTableName)');

End Sub

View solution in original post

1 Reply
Kushal_Chawda

You are calling the Sub routine with name "TraceRowCount" and Parameter "Aircraft Types"

This will give you Total row count of the Table "Aircraft Types"

Possible code could be

Sub TraceRowCount (vTableName)

TRACE "Total Rows of Table " $(vTableName) &'is:' & NoOfRows('$(vTableName)');

End Sub