Hi
I’m taking taking transpose of my excel sheet …converting rows to columns but it comes an error
How to resolve this
I need it urgently
Extracted Result.xlsx (8.7 KB)
Transpose.xaml (8.2 KB)
Thanks in advance
Hi
I’m taking taking transpose of my excel sheet …converting rows to columns but it comes an error
How to resolve this
I need it urgently
Extracted Result.xlsx (8.7 KB)
Transpose.xaml (8.2 KB)
Thanks in advance
Have you checked this video ? @Aima_Arif
Hi @Aima_Arif
May I know why did you provide any range?
You need to provide a start range atleast
cheers
Now I’m watching that link. Hope this will solve my issue
Hi @Aima_Arif
Let us know if you have any issue.
HI @Aima_Arif
Just following the below steps to enable the VBA in the excel setting
Sl.No | Steps | ||
---|---|---|---|
Step 1 | Open an Empty excel or any excel file | ||
Step 2 | Goto File-> Option | ||
Step 3 | Goto Trust Center → Trust Center Settings → Trusted Locations | ||
Step 4 | Click on Add new Location and browse for the folders (Project Location) and check the Sub folder of this location also trusted and click on ok | ||
Step 5 | The Location will be added in the list of trusted location and click on Ok | ||
Step 6 | Goto Trust Center → Trust Center Settings → Macro Setting, enable the Trust access to VBA project object model and click on Ok |
Regards
Gokul
Thank you so so much
Its working fine
Thank you again for helping me
I’ve one more question
If sheet 2 does not exist… How it can be Created automatically using this piece of code?
Because I’m extracting data from web and store that data in excel sheet i-e Sheet1
so when I use transpose it showing me error on line sheet 2
HI @Aima_Arif
Try to use invoke VBA and pass the text file.
Sub create_sheet
Sheets.Add.Name = "New Sheetname"
End sub
Check out this blog
One topic is for one issue. You can create new topic for this issue.
Regards
Gokul
Thank you
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.