Reputation: 449
I am trying to import a 150 MB JSON file into CSV. But all the rows have different number of keys. Issue is that excel find the metadata only based on the first 1000 rows and there are chances that new keys/ columns will be present after the first 1000 rows. Excel says: "Limit of 1000 scanned rows reached"
How do I handle this?
Upvotes: 1
Views: 1789
Reputation: 1530
Try to solve the problem in several steps -
Table.FirstN
/Table.Skip
/Table.LastN
/Table.RemoveLastN
After all delete head and tail cuts and leave only Filter steps. It's not optimal, but works
Upvotes: 2