-
Notifications
You must be signed in to change notification settings - Fork 447
Closed
Labels
Description
I have a view which has around 4 lakh rows, and by default has filter applied to one column (ex: Category is set to 'Furniture'). This reduces the number of rows displayed to 100 rows.
I am trying to export this for all Categories(around 1000+). How do i construct a CSVRequestOptions object that will includes all categories.
Applying comma seperated values get me the rows corresponding to each Cat.
csv_req_option.vf('Category', 'Furniture,Apparel,Shoes')
But is there an option to include all options, instead of hard coding all the options?
I tried csv_req_option.vf('Category', all) and it doesn't seem to work.
Is there an option to choose 'All'?
knguyen1794