If I want to select only one row and that data should be downloaded in Excel.(not all data in that sheet) how we can achieve this with data

0
If I want to select only one row and that data should be downloaded in Excel.(not all data in that sheet) how we can achieve this
asked
1 answers
2

Hi,

In datagrid you can use default export to excel but that will download all the rows shown after filtering. 

There are two way you can do that

  1. Filter the grid so that only required row will be shown in data grid and then use default export excel.
  2. Create custom microflow, in that you can write your logic using excel exporter module and in that microflow pass single selected object from datagrid and use this microflow in control bar button of datagrid.

 

Thanks

answered