
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to find the number of rows for a particular field
Hi all,
How can i find the number of rows of a particular filed from the edit script.
Thanks in advance
Regards
......
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
I am getting like this.
Test:
LOAD F1
FROM
E:\Test1.qvd
(qvd);
Test1:
Load Count(F1) as Count
Resident Test;
Drop Table Test;
(or)
Test:
LOAD F1
FROM
E:\Test1.qvd
(qvd);
Let vCount = NoOfRows('Test1');
Regards
.......

.png)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What do you mean? Do you want to know the number or rows of a table?


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Use
NumofRows('TableName')
Celambarasan

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi ,
Please look into it.
Test:
LOAD F1,
F2,
F3
FROM
E:\Test1.qvd
(qvd);
Now i need to find the distinct number of rows of data for any F1 or F2 or F3.
I tried like this
NoOfRows('F1') and NoOfRows('Test') but ididn't get.
Regards
......

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
I am getting like this.
Test:
LOAD F1
FROM
E:\Test1.qvd
(qvd);
Test1:
Load Count(F1) as Count
Resident Test;
Drop Table Test;
(or)
Test:
LOAD F1
FROM
E:\Test1.qvd
(qvd);
Let vCount = NoOfRows('Test1');
Regards
.......


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You can try with fieldvaluecount function
let vCount = fieldvaluecount('F1');
Celambarasan
