Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
can any one please say the reason for this. iam using persional edition
Hi,
In Straight table records are displayed based on dimensions selected and aggregations used.
select all dimensions and do only basic aggregations and check count of records.
if still find an issue,goto table viewer and check for no of records by hovering on tables and
compare if any discrepancies.
Regards
Neetha
Hi,
Try like load all field as dimension and in expression tab add expression as 1
Do not check supress value as null.
Regards
Based on my point 2 above and Neetha's reply - can you bring all fields into a simple table box and export to see how many rows are there.... if that hangs up your system - then an alternative is to find the most granular field and use only that field in table box to export.
The blank rows shouldn't matter to QlikView.
Alternatively, can you check if your totals are still right - like sum(revenue) or sum(sales) or count(transactions)
Hi neeta plz tell me how to check the count in straight table
There may be a simple approach to keeping your data intact when importing/exporting Excel rows.
Try this:
Good luck,
Peter
In the Table Viewer (Ctrl T), if you mouseover the table name, it will show number of records - what is that showing up as? Is it matching the number of rows you are expecting to load?
Hi,
script to create sequence of numbers for records with RowNo() Function:
Data1:
LOAD Customer,
[Sales Order ID],
ShipDate,
Product,
Sales,
Quantity
FROM
(biff, embedded labels);
Data:
LOAD *,
RowNo() as NoOfRecords
Resident Data1;
In Addition to Peter's suggestions you can also test by using below expression in text Object
=Max(NoOfRecords)
which gives count of records.
Make sure you are not using where clause in script while checking these scenario.
Regards
Neetha
Hi rgv ,
if possible can u share that xl file