Hi, do you have the files you used in the video for download? Vs trying to replicate those will save time. Thank you
@suraj_singh321 Жыл бұрын
Hi sir make a video on Excel transpose data from row to column or column to row uipath without macros where rows and columns are dynamic.
@robobix Жыл бұрын
Video is already uploaded to transpose the datatable in case of dynamic column name you can give the index of columns instead of giving the name. Find the link below kzbin.info/www/bejne/eKTQmXSIm7N-psU
@suraj_singh321 Жыл бұрын
Hi Robobix make a video on I had datatable as column 1 column 3 column 2 I want to rearrange as column 1 column 2 column 3 along with data in uipath help
@robobix Жыл бұрын
Hi suraj_sing321 you can refer to this video kzbin.info/www/bejne/nWPPnaFmpbx1g80 here I have used the Dataview method that will give you the flexibility to rearrange the columns as per your requirements. dt.AsDataView().ToTable(False,"col1","col3","col2")