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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

rownumber in edit script

LOAD F1,
F2,
NoOfRows(Table) as Month
FROM

how can i make this work? NoofRows and rownumber is not working

Thanks in advanced

Labels (1)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You need single quotes around the table name:

NoOfRows('Table')

-Rob

View solution in original post

2 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You need single quotes around the table name:

NoOfRows('Table')

-Rob

Not applicable
Author

Works .. Thanks!