Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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!