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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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

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!