You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.